LeetCode232——用栈实现队列(python)

Posted 归止于飞

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode232——用栈实现队列(python)相关的知识,希望对你有一定的参考价值。

请你仅使用两个栈实现先入先出队列。队列应当支持一般队列支持的所有操作(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(双端队列)来模拟一个栈,只要是标准的栈操作即可。

队列的特点是先入先出,栈的特点是先入后出,所以我们需要两个栈实现数据的换位。将后入的元素放入栈底:
解法一:

class MyQueue(object):

    def __init__(self):
        self.stack1 = []
        self.stack2 = []

    def push(self, x):
        """
        :type x: int
        :rtype: None
        """
        while self.stack1:
            self.stack2.append(self.stack1.pop())
        self.stack1.append(x)
        while self.stack2:
            self.stack1.append(self.stack2.pop())

    def pop(self):
        """
        :rtype: int
        """
        return self.stack1.pop()


    def peek(self):
        """
        :rtype: int
        """
        return self.stack1[-1]


    def empty(self):
        """
        :rtype: bool
        """
        return self.stack1 == []

这是在入栈的时候做文章,也可以在出栈的时候进行修改:

class MyQueue:

    def __init__(self):
        self.stack = []
        self.stack2 = []

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

    def pop(self) -> int:
        while len(self.stack) != 1:
            self.stack2.append(self.stack.pop())
        r = self.stack.pop()
        while self.stack2:
            self.stack.append(self.stack2.pop())
        return r

    def peek(self) -> int:
        return self.stack[0]

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

以上是关于LeetCode232——用栈实现队列(python)的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode-232-用栈实现队列

leetcode232. 用栈实现队列

leetcode232. 用栈实现队列

leetcode-232-用栈实现队列

LeetCode Java刷题笔记—232. 用栈实现队列

leetcode232. 用栈实现队列