算法刷题笔记 模拟队列(C++实现)

58 篇文章 3 订阅
51 篇文章 1 订阅

题目描述

  • 实现一个队列,队列初始为空,支持四种操作:
    • push x – 向队尾插入一个数x
    • pop – 从队头弹出一个数;
    • empty – 判断队列是否为空;
    • query – 查询队头元素。
  • 现在要对队列进行M个操作,其中的每个操作3和操作4都要输出相应的结果。

输入格式

  • 第一行包含整数M,表示操作次数。
  • 接下来M行,每行包含一个操作命令,操作命令为push xpopemptyquery中的一种。

输出格式

  • 对于每个emptyquery操作都要输出一个查询结果,每个结果占一行。
  • 其中,empty操作的查询结果为YESNOquery操作的查询结果为一个整数,表示队头元素的值。

数据范围

  • 1 ≤ M ≤ 100000,
  • 1 ≤ x ≤ 10^9,
  • 所有操作保证合法。

实现代码

#include <iostream>
using namespace std;

const int N = 1e5 + 10;
int simulated_queue[N];
int head = 0, tail = 0;

inline void push(void)
{
    int x;
    cin >> x;
    simulated_queue[tail] = x;
    tail ++;
}

inline void pop(void)
{
    head ++;
}

inline void empty(void)
{
    if(head == tail) cout << "YES" << endl;
    else cout << "NO" << endl;
}

inline void query(void)
{
    cout << simulated_queue[head] << endl;
}

int main(void)
{
    int M;
    cin >> M;
    for(int i = 0; i < M; ++ i)
    {
        string operation;
        cin >> operation;
        if(operation == "push") push();
        else if(operation == "pop") pop();
        else if(operation == "empty") empty();
        else if(operation == "query") query();
    }
    return 0;
}
  • 3
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值