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. 模拟栈的主要内容,如果未能解决你的问题,请参考以下文章