题解 | #【模板】栈#

【模板】栈

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-09 11:01
济南大学 Java
Java抽象带篮子:外卖项目真得美化一下,可以看看我的详细的外卖话术帖子
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务