力扣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();
    }
};
全部评论

相关推荐

2024-12-08 18:59
东北大学 Java
Java抽象带篮子:外卖项目可以看看我的详细的外卖话术,里面还写了怎么描述项目,还为了提高含金量额外增加了很多技术亮点呢。另外我这边还有个7000多字的轮子项目话术,可以狠狠的速成,需要的似我
点赞 评论 收藏
分享
2024-11-11 15:12
南昌大学 材料工程师
一个菜鸡罢了:哥们,感觉你的简历还是有点问题的,我提几点建议,看看能不能提供一点帮助 1. ”新余学院“别加粗,课程不清楚是否有必要写,感觉版面不如拿来写一下做过的事情,教育经历是你的弱势就尽量少写 2. “干部及社团经历”和“自我评价”删掉 3. 论文后面的“录用”和“小修”啥的都删掉,默认全录用,问了再说,反正小修毕业前肯定能发出来 4. 工作经验和研究成果没有体现你的个人贡献,着重包装一下个人贡献
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务