AcWing 829. 模拟队列

2020-12-25 02:28

阅读:393

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

AcWing 829. 模拟队列


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

AcWing 829. 模拟队列

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

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


评论


亲,登录后才可以留言!