首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
MCP广场
社区首页 >专栏 >用栈实现队列

用栈实现队列

原创
作者头像
_kyle
修改于 2020-12-16 02:08:31
修改于 2020-12-16 02:08:31
36100
代码可运行
举报
文章被收录于专栏:kyle的专栏kyle的专栏
运行总次数:0
代码可运行

题目描述

请你仅使用两个栈实现先入先出队列。队列应当支持一般队列的支持的所有操作(push、pop、peek、empty):

实现 MyQueue 类: void push(int x) 将元素 x 推到队列的末尾 int pop() 从队列的开头移除并返回元素 int peek() 返回队列开头的元素 boolean empty() 如果队列为空,返回 true ;否则,返回 false

说明:

你只能使用标准的栈操作 —— 也就是只有 push to top, peek/pop from top, size, 和 is empty 操作是合法的。 你所使用的语言也许不支持栈。你可以使用 list 或者 deque(双端队列)来模拟一个栈,只要是标准的栈操作即可。

进阶:

你能否实现每个操作均摊时间复杂度为 O(1) 的队列?换句话说,执行 n 个操作的总时间复杂度为 O(n) ,即使其中一个操作可能花费较长时间。

示例:

输入: ["MyQueue", "push", "push", "peek", "pop", "empty"] [[], [1], [2], [], [], []] 输出: [null, null, null, 1, 1, false]

解释:

MyQueue myQueue = new MyQueue(); myQueue.push(1); // queue is: [1] myQueue.push(2); // queue is: [1, 2] (leftmost is front of the queue) myQueue.peek(); // return 1 myQueue.pop(); // return 1, queue is [2] myQueue.empty(); // return false

提示:

1 <= x <= 9 最多调用 100 次 push、pop、peek 和 empty 假设所有操作都是有效的 (例如,一个空的队列不会调用 pop 或者 peek 操作)

解题思路

法一

该方法在pop时创建一个栈statck,将原栈出栈在入栈,得到最先入栈的元素。即最先出栈的元素。这方法不太好。

代码语言:javascript
代码运行次数:0
运行
AI代码解释
复制
/**
 * Initialize your data structure here.
 */
var MyQueue = function() {
    this.statck = []
};

/**
 * Push element x to the back of queue. 
 * @param {number} x
 * @return {void}
 */
MyQueue.prototype.push = function(x) {
    this.statck.push(x)
};

/**
 * Removes the element from in front of queue and returns that element.
 * @return {number}
 */
MyQueue.prototype.pop = function() {
    const statck = []
    let el = null

    while(this.statck.length) {
        statck.push(this.statck.pop())
    }

    el = statck.pop()

    while(statck.length) {
        this.statck.push(statck.pop())
    }

    return el
};

/**
 * Get the front element.
 * @return {number}
 */
MyQueue.prototype.peek = function() {
    return this.statck[0]
};

/**
 * Returns whether the queue is empty.
 * @return {boolean}
 */
MyQueue.prototype.empty = function() {
    return this.statck.length === 0
};

/**
 * Your MyQueue object will be instantiated and called as such:
 * var obj = new MyQueue()
 * obj.push(x)
 * var param_2 = obj.pop()
 * var param_3 = obj.peek()
 * var param_4 = obj.empty()
 */

法二

通过2个栈,一个push_statck管入栈,一个pop_statck管出栈,这样出栈优先从pop内出,若pop没有元素,则将push_statck内元素装入入栈到pop_statck中,这样比法一省了很多步。

代码语言:javascript
代码运行次数:0
运行
AI代码解释
复制
/**
 * Initialize your data structure here.
 */
var MyQueue = function() {
    this.push_statck = []
    this.pop_statck = []
};

/**
 * Push element x to the back of queue. 
 * @param {number} x
 * @return {void}
 */
MyQueue.prototype.push = function(x) {
    this.push_statck.push(x)
};

/**
 * Removes the element from in front of queue and returns that element.
 * @return {number}
 */
MyQueue.prototype.pop = function() {
    if (!this.pop_statck.length)
        while(this.push_statck.length)
            this.pop_statck.push(this.push_statck.pop())

    return this.pop_statck.pop()
};

/**
 * Get the front element.
 * @return {number}
 */
MyQueue.prototype.peek = function() {
    if (!this.pop_statck.length)
        while(this.push_statck.length)
            this.pop_statck.push(this.push_statck.pop())

    return this.pop_statck[this.pop_statck.length - 1]
};

/**
 * Returns whether the queue is empty.
 * @return {boolean}
 */
MyQueue.prototype.empty = function() {
    return !this.push_statck.length && !this.pop_statck.length
};

/**
 * Your MyQueue object will be instantiated and called as such:
 * var obj = new MyQueue()
 * obj.push(x)
 * var param_2 = obj.pop()
 * var param_3 = obj.peek()
 * var param_4 = obj.empty()
 */

题目来源:力扣(LeetCode) 链接:https://leetcode-cn.com/problems/implement-queue-using-stacks/

原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。

如有侵权,请联系 cloudcommunity@tencent.com 删除。

原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。

如有侵权,请联系 cloudcommunity@tencent.com 删除。

评论
登录后参与评论
暂无评论
推荐阅读
编辑精选文章
换一批
LeetCode 232. 用栈实现队列
https://leetcode-cn.com/problems/implement-queue-using-stacks/
freesan44
2021/09/14
1680
LeetCode 232. 用栈实现队列
栈排序
栈排序。 编写程序,对栈进行排序使最小元素位于栈顶。最多只能使用一个其他的临时栈存放数据,但不得将元素复制到别的数据结构(如数组)中。该栈支持如下操作:push、pop、peek和isEmpty。当栈为空时,peek返回-1。
WindRunnerMax
2020/08/27
3890
算法刷题-二叉树的锯齿形层序遍历、用栈实现队列 栈设计、买卖股票的最佳时机 IV
给定一个二叉树,返回其节点值的锯齿形层序遍历。(即先从左往右,再从右往左进行下一层遍历,以此类推,层与层之间交替进行)。
共饮一杯无
2023/02/13
2420
leetcode刷题(41)——232. 用栈实现队列
push(x) – 将一个元素放入队列的尾部。 pop() – 从队列首部移除元素。 peek() – 返回队列首部的元素。 empty() – 返回队列是否为空。 示例:
老马的编程之旅
2022/06/22
1320
用队列实现栈
你只能使用队列的基本操作-- 也就是 push to back, peek/pop from front, size, 和 is empty 这些操作是合法的。 你所使用的语言也许不支持队列。 你可以使用 list 或者 deque(双端队列)来模拟一个队列 , 只要是标准的队列操作即可。 你可以假设所有操作都是有效的(例如, 对一个空的栈不会调用 pop 或者 top 操作)。
_kyle
2020/12/11
4390
232. 用栈实现队列
push(x) -- 将一个元素放入队列的尾部。pop() -- 从队列首部移除元素。peek() -- 返回队列首部的元素。empty() -- 返回队列是否为空。示例:
lucifer210
2019/09/04
4990
232. 用栈实现队列
leecode刷题(26)-- 用栈实现队列
所以我们只用一个栈的话是无法实现队列的操作的。不妨换个思路,我们用两个栈来实现队列:
希希里之海
2019/05/14
3630
leecode刷题(26)-- 用栈实现队列
leetcode刷题(100)——232. 用栈实现队列
请你仅使用两个栈实现先入先出队列。队列应当支持一般队列的支持的所有操作(push、pop、peek、empty):
老马的编程之旅
2022/06/22
1660
leetcode刷题(100)——232. 用栈实现队列
算法(七) 模拟
模拟 通过其他类来模拟某类的方法,大概就是模拟了吧。 例题 1,栈实现队列 来自LeetCode232 双栈,一个输入栈,一个输出栈,输出栈为空时,输入栈全部进入输出栈。 简单,稍微思考过程即可得出答案。 解法 class MyQueue { Stack<Integer> in; Stack<Integer> out; /** Initialize your data structure here. */ public MyQueue() { in = n
宇宙无敌暴龙战士之心悦大王
2022/01/10
3980
算法(七) 模拟
Leetcode 232. Implement Queue using Stacks
Implement the following operations of a queue using stacks. push(x) -- Push element x to the back of queue. pop() -- Removes the element from in front of queue. peek() -- Get the front element. empty() -- Return whether the queue is empty. Notes: You must
triplebee
2018/01/12
4990
LeetCode | 225.用队列实现栈
上面的题就是 用队列实现栈 题目的截图,同时 LeetCode 给出了一个类的定义,然后要求实现 用队列实现栈 的完整的数据结构。这次我没有使用 C 语言,而是使用了 C++ 语言,整个类的定义如下:
码农UP2U
2020/08/26
2920
LeetCode | 225.用队列实现栈
我用栈实现了队列!
https://leetcode-cn.com/problems/implement-queue-using-stacks/
代码随想录
2021/07/16
3630
LeetCode 0232 - Implement Queue using Stacks
Implement the following operations of a queue using stacks.
Reck Zhang
2021/08/11
2150
232.Implement Queue using Stacks(Stack-Easy)
该文介绍了如何使用两个栈来实现队列,包括入队、出队、查看队首元素和判断队列是否为空等操作。
Jack_Cui
2018/01/08
4270
LeetCode | 232.用栈实现队列
上面的题就是 用栈实现队列 题目的截图,同时 LeetCode 给出了一个类的定义,然后要求实现 用栈实现队列 的完整的数据结构。这次我同样没有使用 C 语言,而是使用了 C++ 语言,整个类的定义如下:
码农UP2U
2020/08/26
3000
LeetCode | 232.用栈实现队列
Leetcode 232. Implement Queue using Stacks
1. Description 2. Solution class MyQueue { public: /** Initialize your data structure here. */
Tyan
2019/05/25
2520
【LeetCode】225. 用队列实现栈
push(x) -- 元素 x 入栈 pop() -- 移除栈顶元素 top() -- 获取栈顶元素 empty() -- 返回栈是否为空 注意:
韩旭051
2020/06/22
5180
leetcode栈之用队列实现栈
这里使用了两个LinkedList,在push的时候,offer到a队列,然后再将b队列的元素offer到a队列,再交换a、b队列;pop、top、empty的时候直接操作b队列。
code4it
2020/10/03
3580
leetcode栈之用队列实现栈
leetcode刷题(99)——225. 用队列实现栈
push(x) – 元素 x 入栈 pop() – 移除栈顶元素 top() – 获取栈顶元素 empty() – 返回栈是否为空 注意:
老马的编程之旅
2022/06/22
1900
LeetCode 232. 用栈实现队列
请你仅使用两个栈实现先入先出队列。队列应当支持一般队列的支持的所有操作(push、pop、peek、empty):
SakuraTears
2022/01/13
1750
相关推荐
LeetCode 232. 用栈实现队列
更多 >
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档