225. 用队列实现栈

该博客介绍了一种使用队列来模拟栈操作的方法。在push操作中,元素直接入队;在pop操作时,将队列中除最后一个元素外的所有元素依次入队再出队,从而实现栈的弹出顺序。此实现巧妙地利用了队列的特性,简化了栈的操作过程。
摘要由CSDN通过智能技术生成
  • 思路
    一个队列在模拟栈弹出元素的时候只要将队列头部的元素(除了最后一个元素外) 重新添加到队列尾部,此时在去弹出元素就是栈的顺序了。
class MyStack 
{
public:
    queue<int> que;
    /** Initialize your data structure here. */
    MyStack() 
    {

    }
    /** Push element x onto stack. */
    void push(int x) //直接将元素push进队列
    {
        que.push(x);
    }
    /** Removes the element on top of the stack and returns that element. */
    int pop() 
    {
        int size = que.size();
        size--;//确保最后一个元素不被添加到队尾

        while (size--) 
        { 
            que.push(que.front());// 将队列头部的元素(除了最后一个元素外) 重新添加到队列尾部
            que.pop();
        }

        int res = que.front(); // 此时弹出的元素顺序就是栈的顺序了
        que.pop();

        return res;
    }

    /** Get the top element. */
    int top() 
    {
        return que.back();
    }

    /** Returns whether the stack is empty. */
    bool empty() 
    {
        return que.empty();
    }
};
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值