码迷,mamicode.com
首页 > 编程语言 > 详细

leetcoder系列001:c++字符串反转

时间:2014-08-18 23:22:23      阅读:450      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   io   for   ar   问题   

问题:

给定一个输入字符串字符串反向。例如

 s = "the sky is blue",
返回 "blue is sky the".

我的答案:

class Solution {
public:
    void reverseWords(string &s) {
        if(s.size() <= 0)
            return;
            
        string pattern = " ";
        string::size_type pos;
        vector<string> result;
        s += pattern;
        string::size_type size = s.size();
        for(int i = 0;i < size;i++){
            pos = s.find(pattern, i);
            if(pos < size){
                string word = s.substr(i, pos - i);
                if(word.find(pattern) == -1 && word != "")
                    result.push_back(word);
                i = pos + pattern.size() - 1;
            }
        }
        
        s = "";
        if(result.size() <= 0)
            return;
        for(int i = result.size() - 1; i >= 1 ; i--){
          s += result[i];
          s += " ";
        }
        s += result[0];
    }
};

 

 

leetcoder系列001:c++字符串反转,布布扣,bubuko.com

leetcoder系列001:c++字符串反转

标签:style   blog   color   os   io   for   ar   问题   

原文地址:http://www.cnblogs.com/xskCoder/p/3920672.html

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