225 用队列实现栈(栈-队列)

1. 问题描述:

请你仅使用两个队列实现一个后入先出(LIFO)的栈,并支持普通队列的全部四种操作(push、top、pop 和 empty)
实现 MyStack 类:
void push(int x) 将元素 x 压入栈顶。
int pop() 移除并返回栈顶元素。
int top() 返回栈顶元素。
boolean empty() 如果栈是空的,返回 true ;否则,返回 false 。

注意:
你只能使用队列的基本操作 —— 也就是 push to back、peek/pop from front、size 和 is empty 这些操作。
你所使用的语言也许不支持队列。 你可以使用 list (列表)或者 deque(双端队列)来模拟一个队列 , 只要是标准的队列操作即可。

示例:

输入:
["MyStack", "push", "push", "top", "pop", "empty"]
[[], [1], [2], [], [], []]
输出:
[null, null, null, 2, 2, false]
解释:
MyStack myStack = new MyStack();
myStack.push(1);
myStack.push(2);
myStack.top(); // 返回 2
myStack.pop(); // 返回 2
myStack.empty(); // 返回 False

提示:

  • 1 <= x <= 9
  • 最多调用100 次 pushpoptop 和 empty
  • 每次调用 pop 和 top 都保证栈不为空

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/implement-stack-using-queues

2. 思路分析:

分析题目可以知道其实考查的是栈和队列的特点,我们可以使用一个额外的队列进行缓冲,利用这个队列来弹出栈顶元素和取出栈顶元素,python语言可以使用列表来模拟队列

225 用队列实现栈(栈-队列)_第1张图片

3. 代码如下:

class MyStack:
    def __init__(self):
        # 使用列表来表示栈
        self.q = list()
        self.w = list()

    def push(self, x: int) -> None:
        q = self.q
        q.append(x)

    # 借助于另外一个队列实现
    def pop(self) -> int:
        q = self.q
        w = self.w
        # 只有当队列中元素数量大于1的时候说明队列中大于等于2个元素所以可以执行循环这样最后队列中就会只剩下一个元素
        while len(q) > 1:
            w.append(q.pop(0))
        top = q.pop()
        while w:
            q.append(w.pop(0))
        return top

    # 与pop方法是类似的
    def top(self) -> int:
        q = self.q
        w = self.w
        while len(q) > 1:
            w.append(q.pop(0))
        top = q.pop()
        while w:
            q.append(w.pop(0))
        q.append(top)
        return top

    def empty(self) -> bool:
        return len(self.q) <= 0

 

你可能感兴趣的:(力扣,栈和队列)