AcWing 828. 模拟栈

2020-12-25 02:28

阅读:410

标签:pre   cin   ++   ret   add   empty   wing   str   void   

AcWing 828. 模拟栈


#include 
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

AcWing 828. 模拟栈

标签:pre   cin   ++   ret   add   empty   wing   str   void   

原文地址:https://www.cnblogs.com/wiseXu/p/13396678.html


评论


亲,登录后才可以留言!