题解 | #【模板】栈#

【模板】栈

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


#include <bits/stdc++.h>
using namespace std;
const int N = 1e5 + 5;
int st[N];
int n, x, top = -1;
string s;
int main()
{
    cin>>n;
    while (n--) {
        cin>>s;
        if (s == "push") {
            cin>>x;
            st[++top] = x;
        }else if (s == "top") {
            if (top == -1) {
                cout<<"error"<<endl;
            } else {
                cout<<st[top]<<endl;
            }
        }else if (s == "pop") {
            if (top == -1) {
                cout<<"error"<<endl;
            } else {
                cout<<st[top]<<endl;
                --top;
            }
        }
    }
    
    return 0;
}


全部评论

相关推荐

一个菜鸡罢了:哥们,感觉你的简历还是有点问题的,我提几点建议,看看能不能提供一点帮助 1. ”新余学院“别加粗,课程不清楚是否有必要写,感觉版面不如拿来写一下做过的事情,教育经历是你的弱势就尽量少写 2. “干部及社团经历”和“自我评价”删掉 3. 论文后面的“录用”和“小修”啥的都删掉,默认全录用,问了再说,反正小修毕业前肯定能发出来 4. 工作经验和研究成果没有体现你的个人贡献,着重包装一下个人贡献
点赞 评论 收藏
分享
评论
12
2
分享
牛客网
牛客企业服务