题解 | #【模板】栈#

【模板】栈

https://www.nowcoder.com/practice/104ce248c2f04cfb986b92d0548cccbf

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

int main() {
    int n ;
    cin >> n;
    stack<int> st;
    for (int i = 0;i < n;i++)
    {
        string op;
        getline(cin,op);
        auto it = op.find(' ');
        if (it != string::npos)
        {
            string a = op.substr(0,it);
            string data = op.substr(it + 1);
            if (a == "push")
            {
                st.push(stoi(data));
                //cout << st.top() << endl;
            }
        }
        else
        {
            if (op == "pop")
            {
                if (!st.empty())
                {
                    cout << st.top() << endl;
                    st.pop();
                }
                else
                {
                    cout << "error" << endl;
                }
            }
            else if (op == "top")
            {
                if (!st.empty())
                {
                    cout << st.top() << endl;
                }
                else
                {
                    cout << "error" << endl;
                }
            }
        }
        if(i == n - 1)
        {
            if (!st.empty())
            {
                cout << st.top() << endl;
            }
            else
            {
                cout << "error" << endl;
            }
        }
    }
}
// 64 位输出请用 printf("%lld")

全部评论

相关推荐

11-24 11:23
门头沟学院 C++
点赞 评论 收藏
分享
10-11 17:45
门头沟学院 Java
走吗:别怕 我以前也是这么认为 虽然一面就挂 但是颇有收获!
点赞 评论 收藏
分享
11-04 14:10
东南大学 Java
_可乐多加冰_:去市公司包卖卡的
点赞 评论 收藏
分享
11-28 17:48
中山大学 C++
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务