码迷,mamicode.com
首页 > 其他好文 > 详细

【Leetcode】Reverse Words in a String

时间:2014-10-01 13:10:51      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   for   sp   div   c   on   

Given an input string, reverse the string word by word.

For example,
Given s = "the sky is blue",
return "blue is sky the".

补充说明:

单词是指空格之间的字符序列。

输入中可能有首部或尾部的空格,输出中应去除。

两个单词之间的多个空格应该压缩为单个空格。

 

解法:从后向前扫描字符串,找到单词时,插入返回字符串的末尾。

 1 class Solution {
 2 public:
 3     void reverseWords(string &s) {
 4         string ret;
 5         int begin = s.size() - 1, len = 0;
 6         while (begin >= 0) {
 7             while (begin >= 0 && s[begin] ==  ) {
 8                 --begin;
 9             }
10             while (begin >= 0 && s[begin] !=  ) {
11                 --begin;
12                 ++len;
13             }
14             if (len > 0) {
15                 if(ret.empty()) {
16                     ret = s.substr(begin + 1, len);
17                 } else {
18                     ret = ret + " " + s.substr(begin + 1, len);
19                 }
20                 len = 0;
21             }
22         }
23         s = ret;
24     }
25 };

 

 

【Leetcode】Reverse Words in a String

标签:style   blog   color   io   for   sp   div   c   on   

原文地址:http://www.cnblogs.com/dengeven/p/3740220.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!