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

c++句子逆序——堆栈实现

时间:2020-04-03 22:10:47      阅读:90      评论:0      收藏:0      [点我收藏+]

标签:ret   main   ++   堆栈   end   abs   ace   ring   turn   


#include <stack>
#include <string>
using namespace std;

int main()
{
stack<string> ss;
string s;
while (cin >> s)
{
ss.push(s);
}
while (!ss.empty())
{
cout << ss.top();
ss.pop();
if (!ss.empty())
cout << ‘ ‘;
}
cout << endl;

        return 0;

}

 

c++句子逆序——堆栈实现

标签:ret   main   ++   堆栈   end   abs   ace   ring   turn   

原文地址:https://www.cnblogs.com/xufeng123/p/12628865.html

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