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

翻转字符串

时间:2017-08-07 00:19:06      阅读:107      评论:0      收藏:0      [点我收藏+]

标签:size   img   字符   ring   ima   class   image   while   int   

代码:

class Solution {
public:
/**
* @param s : A string
* @return : A string
*/
string reverseWords(string s) {
int storeIndex = 0, n = s.size();
reverse(s.begin(), s.end());
for (int i = 0; i < n; ++i) {
if (s[i] != ‘ ‘) {
if (storeIndex != 0) s[storeIndex++] = ‘ ‘;
int j = i;
while (j < n && s[j] != ‘ ‘) s[storeIndex++] = s[j++];
reverse(s.begin() + storeIndex - (j - i), s.begin() + storeIndex);
i = j;
}
}
return string(s.begin(), s.begin() + storeIndex);
}
};

截图:

技术分享

翻转字符串

标签:size   img   字符   ring   ima   class   image   while   int   

原文地址:http://www.cnblogs.com/w1500802028/p/7296436.html

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