题解 | #【模板】栈#

【模板】栈

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

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

int main() {
    int n;
    cin >> n;
    string temp;
    int num = 0;
    int x;
    int counts[100001];
    for (int i = 0; i < n; i++) {
        cin >> temp;
        if (temp == "push") {
            cin >> x;
            counts[num] = x;
            num++;
        } else {
            if (num > 0) {
                if (temp == "pop") {
                    cout << counts[num - 1] << endl;
                    num--;
                } else {
                    cout << counts[num - 1] << endl;
                }
            } else {
                cout << "error" << endl;
            }
        }
    }
}
// 64 位输出请用 printf("%lld")

全部评论

相关推荐

比亚迪汽车新技术研究院 硬件工程师 总包21左右 硕士
点赞 评论 收藏
分享
像好涩一样好学:这公司我也拿过 基本明确周六加班 工资还凑活 另外下次镜头往上点儿
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务