AcWing 829. 模拟队列
Posted wisexu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了AcWing 829. 模拟队列相关的知识,希望对你有一定的参考价值。
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. 模拟队列的主要内容,如果未能解决你的问题,请参考以下文章