LeetCode新题,但是比较简单,直接用栈即可
Given an input string, reverse the string word by word.
For example,
Given s = "the sky is blue",
return "blue is sky the".
public class Solution {
public String reverseWords(String s) {
if(s.length() == 0) {
return s;
}
Stack<String> stack = new Stack<String>();
String[] ss = s.split("\\s+");
for(String word : ss) {
stack.push(word);
}
StringBuilder sb = new StringBuilder();
while(!stack.isEmpty()) {
sb.append(stack.pop()).append(" ");
}
return sb.toString().trim();
}
}Reverse Words in a String 翻转一个字符串里的单词顺序 @LeetCode,布布扣,bubuko.com
Reverse Words in a String 翻转一个字符串里的单词顺序 @LeetCode
原文:http://blog.csdn.net/fightforyourdream/article/details/38531289