码迷,mamicode.com
首页 > Windows程序 > 详细

AcWing 829. 模拟队列

时间:2020-07-29 15:09:36      阅读:80      评论:0      收藏:0      [点我收藏+]

标签:code   while   scan   cin   win   std   ==   队列   模拟   

AcWing 829. 模拟队列


#include <bits/stdc++.h>
using namespace std;
const int N=1e6+10;
int q[N],hh,tt;
void init(){
    hh=0;
    tt=-1;
}
void add(int x){
    q[++tt]=x;
}
void remove(){
    hh++;
}
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(hh>tt) cout<<"YES"<<endl;
            else cout<<"NO"<<endl;
        }else if(op=="query"){
            cout<<q[hh]<<endl;
        }
    }
    return 0;
}

AcWing 829. 模拟队列

标签:code   while   scan   cin   win   std   ==   队列   模拟   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!