题解 | #翻转单词序列#

翻转单词序列

http://www.nowcoder.com/practice/3194a4f4cf814f63919d0790578d51f3

class Solution {
public:
    string ReverseSentence(string str) {
    	// 把单词压入栈中
        string x;
        stack<string> s;
        istringstream is(str);
        while(is >> x){
          s.push(x);
        }
      	
        // 出栈重组单词
        string final_str;
        while(!s.empty()){
          final_str += s.top();
          final_str += " ";
          s.pop();
        }
      
      return final_str.substr(0, final_str.length()-1);
    }
};
全部评论

相关推荐

totoroyyw:千年老妖😂
投递华为等公司10个岗位
点赞 评论 收藏
分享
联通 技术人员 总包不低于12
点赞 评论 收藏
分享
2 收藏 评论
分享
牛客网
牛客企业服务