【算法模板】数组模拟栈与队列

 

目录

 1.前言

2.栈的模拟

3.队列的模拟 

4.结语


 1.前言

此算法比较简单易懂,只需了解栈与队列的思想即可。 

2.栈的模拟

 

 题目出自:https://www.acwing.com/problem/content/830/

#include <iostream>
using namespace std;
const int N = 100010;
int e[N];

int main()
{
    int m;
    cin>>m;
    
    //tt表示栈顶
    int tt = -1;
    
    string op;
    while(m--)
    {
        int x;
        cin>>op;
     
        //栈顶插入一个元素
        if(op=="push")
        {
            cin>>x;
            e[++tt]=x;
        }

        //栈顶弹出一个元素
        else if(op=="pop")
        {
            tt--;
        }

        //判断栈是否为空
        else if(op=="empty")
        {
            if(tt>=0)
            {
                printf("NO\n");
            }
            else
            {
                printf("YES\n");
            }
        }

        //查询栈顶元素
        else if(op=="query")
        {
            printf("%d\n",e[tt]);
        }
        
    }
    return 0;
}

3.队列的模拟 

 

 

 题目出自:https://www.acwing.com/problem/content/831/

#include <iostream>
using namespace std;

const int N = 100010;
int e[N];

int main()
{
    int m;
    cin >> m;
    
    //hh为队头,tt为队尾
    int hh = 0, tt = -1;
    while (m--)
    {
        string op;
        cin >> op;

        int x;

        //队尾插入一个数
        if (op == "push")
        {
            cin >> x;
            e[++tt] = x;
        }

        //队头弹出一个元素
        else if (op == "pop")
        {
            hh++;
        }

        //判断是否为空
        else if (op == "empty")
        {
            if (hh > tt)
            {
                printf("YES\n");
            }
            else
            {
                printf("NO\n");
            }
        }

        //查询队头元素
        else if (op == "query")
        {
            printf("%d\n", e[hh]);
        }

    }
    return 0;
}

4.结语

 到这里,本篇就结束了,以后会向着更复杂的结构进行模板总结。希望大家多多支持哦。

评论 6
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Laxinues

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值