AcWing 828. 模拟栈

Posted wisexu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了AcWing 828. 模拟栈相关的知识,希望对你有一定的参考价值。

AcWing 828. 模拟栈


#include <bits/stdc++.h>
using namespace std;
const int N=1e6+10;
int stk[N],tt;
void init(){
    tt=0;
}
void add(int x){
    stk[++tt]=x;
}
void remove(){
    tt--;
}
int main(){
    int m;
    cin>>m;
    init();
    while(m--){
        string op;
        cin>>op;
        int x;
        if(op=="push"){
            scanf("%d",&x);
            add(x);
        }else if(op=="pop"){
            remove();
        }else if(op=="empty"){
            if(tt) cout<<"NO"<<endl;
            else cout<<"Yes"<<endl;
        }else if(op=="query"){
            cout<<stk[tt]<<endl;
        }
    }
    return 0;
}

以上是关于AcWing 828. 模拟栈的主要内容,如果未能解决你的问题,请参考以下文章

828. 模拟栈

AcWing基础算法课Level-2 第二讲 数据结构

AcWing 128. 编辑器 模拟栈+对顶栈

AcWing 154. 滑动窗口

AcWing 839. 模拟堆

Acwing第 30 场周赛完结