力扣225. 用队列实现栈

  这是我第二次发题解,希望大家支持下哈
  声明小萌新手机很渣,拍摄清晰度有限

力扣俩链接https://leetcode-cn.com/problems/implement-stack-using-queues/

解法一

两队列,Push时间复杂度O(n),Pop时间复杂度O(1)

图片.png

如果我们单单从操作的角度看,如图所示队列和栈只有Push是不一样的(队列插在队尾,栈插在栈顶)。
因此可以借助先将原队列中的值存入额外的临时队列temp,然后插入新元素,再将原本存在temp中的数据再导入原队列中。

图片.png
图片.png

这里我们可以发现将一段有序序列依次传入队列中,再依次传出队列顺序不发生任何改变
一段有序序列依次传入栈中,再依次传出栈顺序完全颠倒

class MyStack {
private:
    queue<int> que;
public:
    /** Initialize your data structure here. */
    MyStack() {

    }

    /** Push element x onto stack. */
    void push(int x) {
        queue<int> temp;
        int t=0;
        int length=que.size();
        for(int i=0; i<length; i++)
        {
            t=que.front();
            que.pop();
            temp.push(t);
        }
        //     temp.push(que.pop());
        que.push(x);
        // cout<<x<<" ";
        for(int i=0; i<length; i++)
        {
            t=temp.front();
            que.push(t);
            temp.pop();
           // cout<<t<<" ";
        }
        //cout<<endl;
        //     que.push(temp.pop());
    }

    /** Removes the element on top of the stack and returns that element. */
    int pop() {
        if(que.empty())
            return 0;
        int t=que.front();
        que.pop();
        return t;
    }

    /** Get the top element. */
    int top() {
        if(que.empty())
            return 0;
        return que.front();
    }

    /** Returns whether the stack is empty. */
    bool empty() {
        return que.empty();
    }
};

解法二

借助额外队列,Pop时间复杂度O(n),Push时间复杂度O(1)

图片.png

有了上面的经验,我们不难发现,队列和我像构建的栈之间只有Pop操作不一样(和解法一非常相似)
并且我们发现队列与栈的方向,会导致Pop和Push复杂度改变

代码实现就当是小作业,由你自己完成

解法三

不借助额外队列,Push时间复杂度O(n),Pop时间复杂度O(1)

图片.png

本质上是前两解法的优化
利用前面提到的队列顺序输入顺序输出不改变序列顺序

图片.png

也就是说先将目标值插入再将目标值前面的n-1个数输出再输入进入队列,
这样前n-1个数都顺序的排列再目标值之下了

class MyStack {
private:
    queue<int> que;
public:
    /** Initialize your data structure here. */
    MyStack() {

    }

    /** Push element x onto stack. */
    void push(int x) {
        //queue<int> temp;
        int t=0;
        int length=que.size();
        que.push(x);
        for(int i=0; i<length; i++)
        {
            t=que.front();
            que.pop();
            que.push(t);
        }
        //     temp.push(que.pop());
        // cout<<x<<" ";
        //cout<<endl;
        //     que.push(temp.pop());
    }

    /** Removes the element on top of the stack and returns that element. */
    int pop() {
        if(que.empty())
            return 0;
        int t=que.front();
        que.pop();
        return t;
    }

    /** Get the top element. */
    int top() {
        if(que.empty())
            return 0;
        return que.front();
    }

    /** Returns whether the stack is empty. */
    bool empty() {
        return que.empty();
    }
};
全部评论

相关推荐

就前几天旅游的时候,打开抖音就经常刷到这类视频:以前是高学历学生、老师、主持人,现在做着团播、擦边主播的工作,以及那些经过精心包装的“职业转型”故事——从铺天盖地的VLOG到所谓的“04年夜场工作日记”,这些内容在初中升学、高考放榜等关键时间节点持续发酵。可以说非常直接且精准地在潜移默化地影响着心智尚未成熟的青少年,使其对特殊行业逐渐脱敏。那我就想问了:某些传播公司、平台运营者甚至某些夜场的老板,你们究竟在传递怎样的价值观?点开那些视频,评论区里也是呈现明显的两极分化:一种是​​经济下行论​​:“现在就业市场已经艰难到这种程度了吗?”​​一种是事实反驳派​​:这些创作者往往拥有名校背景,从事着...
牛客刘北:被环境教育的,为了能拿到足够的钱养活自己,不甘心也得甘心,现在的短视频传播的思想的确很扭曲,但是很明显,互联网玩上一年你就能全款提A6,但你全心全意不吃不喝工作一年未必能提A6,但是在高考中考出现这个的确很扭曲,在向大家传播“不上学,玩互联网也可以轻松年入百万”,不是人变了,是社会在变
预测一下26届秋招形势
点赞 评论 收藏
分享
机械打工仔:我来告诉你原因,是因为sobb有在线简历,有些HR为了快会直接先看在线简历,初步感觉不合适就不会找你要详细的了
投了多少份简历才上岸
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务