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

Reverse Words in a String

时间:2014-05-26 13:39:16      阅读:271      评论:0      收藏:0      [点我收藏+]

标签:style   c   class   blog   code   tar   

Reverse Words in a String

反转一个字符串

垃圾方法:

bubuko.com,布布扣
#include <sstream>
#include <vector>

class Solution {
public:
    void reverseWords(string &s) {
        istringstream is(s);
        string word;
        vector<string> dict;
        while (is >> word) {
            dict.push_back(word);
        }
        string ret = "";
        for (int i = dict.size() - 1; i > 0; --i) {
            ret = ret + dict[i] + " ";
        }
        if (dict.size() > 0)
            ret += dict[0];
        s = ret;
    }
};
View Code

 

Evaluate Reverse Polish Notation

简单计算器

 

 

 

Reverse Words in a String,布布扣,bubuko.com

Reverse Words in a String

标签:style   c   class   blog   code   tar   

原文地址:http://www.cnblogs.com/fripside/p/3746640.html

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