队列实现栈,栈实现队列,你学废了吗?

队列与栈

相关概念

  • 队列是先进先出,栈是先进后出。

    image.png

  • 以栈为例,如图所示。
    image.png

例题1:用栈实现队列

题目链接:[232.用栈实现队列](232. 用栈实现队列 - 力扣(LeetCode) (leetcode-cn.com))

image.png
image.png

分析:

  • 需要使用两个栈实现,一个为输入栈,一个为弹出栈
  • 由于队列的输出顺序刚好是和栈相反的,所以当输出栈为空时,就讲输入栈里面弹出,放入输出栈,这个时候输出栈的输出顺序就和队列的输出顺序一致。
MyQueue.prototype.pop = function() {
    if(this.stackOut.length === 0) {
        while(this.stackIn.length > 0){
            this.stackOut.push(this.stackIn.pop());
        }
    }
    return this.stackOut.pop();
};
  • 当需要获取最上面的元素(队列首部元素)时,其实也就是输出栈输出的第一个元素,可将其输出获取到值以后再将其压入栈。
MyQueue.prototype.peek = function() {
    const x = this.pop();
    this.stackOut.push(x);
    return x;
};

解答

var MyQueue = function() {
    this.stackIn = [];
    this.stackOut = [];
};

MyQueue.prototype.push = function(x) {
    this.stackIn.push(x);
};

MyQueue.prototype.pop = function() {
    if(this.stackOut.length === 0) {
        while(this.stackIn.length > 0){
            this.stackOut.push(this.stackIn.pop());
        }
    }
    return this.stackOut.pop();
};

MyQueue.prototype.peek = function() {
    const x = this.pop();
    this.stackOut.push(x);
    return x;
};

MyQueue.prototype.empty = function() {
    return !this.stackIn.length && !this.stackOut.length;
};

例题2:用队列实现栈

题目链接:[225.用队列实现栈](225. 用队列实现栈 - 力扣(LeetCode) (leetcode-cn.com))

image.png

分析:

  • 不同于用栈实现队列,这里可以不需要两个队列实现栈,只需要一个队列即可。
  • 一个队列实现方法(针对于pop()方法的实现)
    • 只需要将队列的前length - 1个元素移到队列后面即可。
    • 直接shift()取出的第一个元素就是我们要的结果。
MyStack.prototype.pop = function() {
    let k = this.queue.length - 1;
    while(k-- > 0){
        this.queue.push(this.queue.shift());
    }
    return this.queue.shift();
};

  • 两个队列实现方法(针对于pop()方法的实现)
    • 使用一个辅助队列,当辅助队列里的元素为空时我们将另外一个队列与辅助队列交换。
    • 将辅助队列的元素出队放到另外一个队列中,剩下一个元素即可,这里可以采用while循环,控制队列长度为1。
    • 最后直接将辅助队列剩下的元素取出即可,shift()。
MyStack.prototype.pop = function() {
    if(!this.queue1.length){
        [this.queue1, this.queue2] = [this.queue2, this.queue1];
    }
    while(this.queue1.length > 1){
        this.queue2.push(this.queue1.shift());
    }
    return this.queue1.shift();
};

解答方法一:一个队列实现

var MyStack = function() {
    this.queue = [];
};

MyStack.prototype.push = function(x) {
    this.queue.push(x);
};

MyStack.prototype.pop = function() {
    let k = this.queue.length - 1;
    while(k-- > 0){
        this.queue.push(this.queue.shift());
    }
    return this.queue.shift();
};

MyStack.prototype.top = function() {
    const x = this.pop();
    this.queue.push(x);
    return x;
};

MyStack.prototype.empty = function() {
    return !this.queue.length;
};

解答方法二:两个队列实现

var MyStack = function() {
    this.queue1 = []; // 辅助队列1
    this.queue2 = [];
};

MyStack.prototype.push = function(x) {
    this.queue2.push(x);
};

MyStack.prototype.pop = function() {
    if(!this.queue1.length){
        [this.queue1, this.queue2] = [this.queue2, this.queue1];
    }
    while(this.queue1.length > 1){
        this.queue2.push(this.queue1.shift());
    }
    return this.queue1.shift();
};

MyStack.prototype.top = function() {
    const x = this.pop();
    this.queue2.push(x);
    return x;
};

MyStack.prototype.empty = function() {
    return !this.queue2.length;
};
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

打赏作者

努力不熬夜的小喵

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

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

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

打赏作者

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

抵扣说明:

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

余额充值