简单的写法
翻转单词顺序列
http://www.nowcoder.com/questionTerminal/3194a4f4cf814f63919d0790578d51f3
public class Solution {
public String ReverseSentence(String str) {
String [] b=str.split(" ");
String s="";
if(b.length<=1){
return str;
}
else{
for(int i=b.length-1;i>0;i--){
s=s+b[i]+" ";
}
s=s+b[0];
}
return s;
}
}
```1使用split切割,存入字符串数组
2.从后往前遍历,每一个后面拼接空格
3.第一个不遍历,最后进行拼接