JZ9 用两个栈实现队列[C++]

题目:用两个栈来实现一个队列,使用n个元素来完成 n 次在队列尾部插入整数(push)和n次在队列头部删除整数(pop)的功能。 队列中的元素为int类型。保证操作合法,即保证pop操作时队列内已有元素。

代码:

#include<iostream>
#include<stack>
using namespace std;
class MyQueue
{
private:
    stack<int> s1;  //入队
    stack<int> s2;  //出队
public:
    void push(int x)
    {
        s1.push(x);
    }
    void pop()
    {
        if (!s2.empty())
        {
            s2.pop();
        }
        else
        {
            while (!s1.empty())
            {
                int tmp = s1.top();
                s1.pop();
                s2.push(tmp);
            }
            s2.pop();
        }
    }
    int front()
    {
        if (!s2.empty())
        {
            return s2.top();
        }
        else
        {
            while (!s1.empty())
            {
                int tmp = s1.top();
                s1.pop();
                s2.push(tmp);
            }
            return s2.top();
        }
    }
    bool empty()
    {
        if (s1.empty() && s2.empty())
        {
            return true;
        }
        else
            return false;
    }
};
int main()
{
    MyQueue que;
    que.push(1);
    que.push(2);
    que.push(3);
    que.push(4);
    que.push(5);
    while (!que.empty())
    {
        cout << que.front() << "\t";
        que.pop();
    }
 return 0;
}

过程:

(1)void push(int x)
    {
        s1.push(x);
    }

(2) void pop()
    {
        if (!s2.empty())
        {
            s2.pop();
        }
        else
        {
            while (!s1.empty())
            {
                int tmp = s1.top();
                s1.pop();
                s2.push(tmp);
            }
            s2.pop();
        }

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值