标签:
Given an input string, reverse the string word by word.
For example,
Given s = "the sky is blue
",
return "blue is sky the
".
Update (2015-02-12):
For C programmers: Try to solve it in-place in O(1) space.
Clarification:
[LeetCode] Reverse Words in a String 翻转字符串中的单词
标签:
原文地址:http://www.cnblogs.com/grandyang/p/4606676.html