标签:style blog color java os io 数据 for
Given an input string, reverse the string word by word.
For example,
Given s = "the sky is blue
",
return "blue is sky the
".
1 public class Solution { 2 public String reverseWords(String s) { 3 if(s.equals(""))return s; 4 String arr[]=s.split(" "); 5 String new_word=""; 6 for(int i=arr.length-1;i>=0;i--) 7 { 8 if(arr[i].equals(""))continue; 9 new_word+=arr[i]+" "; 10 } 11 new_word=new_word.toString().trim(); 12 return new_word; 13 } 14 }
做完以后看了别人的答案 发现有用StringBuilder
所以又去学习了一下这个三个的区别 在100000复杂度下 StringBulder和buffer比string快的就不是一点了
所以:
1.如果要操作少量的数据用 = String
2.单线程操作字符串缓冲区 下操作大量数据 = StringBuilder
3.多线程操作字符串缓冲区 下操作大量数据 = StringBuffer
Reverse Words in a String (JAVA),布布扣,bubuko.com
Reverse Words in a String (JAVA)
标签:style blog color java os io 数据 for
原文地址:http://www.cnblogs.com/sweetculiji/p/3923460.html