题解 | #句子逆序#

句子逆序

https://www.nowcoder.com/practice/48b3cb4e3c694d9da5526e6255bb73c3

学习和记录一下

方法1:

#include <iostream>
#include <vector>
#include <string>
using namespace std;
int main()
{
    string s;
    vector<string> v;
    while (cin >> s) {
        v.push_back(s);
    }
    for (auto it = v.rbegin(); it != v.rend(); it++) {
        cout << *it << " ";
    }
}

方法2

#include <iostream>
#include <vector>
#include <string>
#include<bits/stdc++.h>
using namespace std;
int main()
{
    string s;
    vector<string> v;
    while (cin >> s) {
        v.emplace_back(s);
    }
    copy(v.rbegin(), v.rend(), ostream_iterator<string> (cout, " "));
}

方法3

#include <iostream>
#include <string>
#include <stack>
using namespace std;
int main()
{
    string str;
    stack<string> sta;
    while (cin >> str) {
        sta.push(str);
    }
    while (!sta.empty()) {
        cout << sta.top() << " ";
        sta.pop();
    }
}
全部评论

相关推荐

10-30 23:23
已编辑
中山大学 Web前端
去B座二楼砸水泥地:这无论是个人素质还是专业素质都👇拉满了吧
点赞 评论 收藏
分享
专心打鱼:互联网搬运工,贴子都要偷
点赞 评论 收藏
分享
评论
3
收藏
分享
牛客网
牛客企业服务