用队列实现栈python(leetcode225)
2022/1/2 11:07:18
本文主要是介绍用队列实现栈python(leetcode225),对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
#225. 用队列实现栈
使用两个队列实现一个后入先出(LIFO)的栈,并支持普通栈的全部四种操作(push、top、pop 和 empty)。
class MyStack: """ python使用双向队列deque实现栈,普通的queue没有类似peek的功能,实现top比较复杂 双向队列中有append和appendleft分别是向右添加和向左添加元素, pop和popleft分别指向最右和最左的元素 使用append和popleft就是队列的操作 """ def __init__(self): # 两个队列实现栈 self.queue_in = deque() self.queue_out = deque() def push(self, x: int) -> None: self.queue_in.append(x) def pop(self) -> int: # 不同于使用两个栈实现队列,如果将queue_in的所有元素用popleft和append移动到queue_out,顺序和之前保持不变 # popleft将queue_in队列先入的元素弹出,直到剩余最后一个,就是栈的pop需要找的弹出的最后一个进入的元素 # queue_in队列中最后一个元素之前的元素先进入queue_out,再回到queue_in for i in range(len(self.queue_in) - 1): self.queue_out.append(self.queue_in.popleft()) res = self.queue_in.popleft() self.queue_in, self.queue_out = self.queue_out, self.queue_in return res def top(self) -> int: # 栈的top是返回最后一个输入的元素 # 即返回队列的最后一个元素 return self.queue_in[-1] def empty(self) -> bool: # 只有queue_in存放数据 return not self.queue_in # Your MyStack object will be instantiated and called as such: # obj = MyStack() # obj.push(x) # param_2 = obj.pop() # param_3 = obj.top() # param_4 = obj.empty()
这篇关于用队列实现栈python(leetcode225)的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-12-28Python编程基础教程
- 2024-12-27Python编程入门指南
- 2024-12-27Python编程基础
- 2024-12-27Python编程基础教程
- 2024-12-27Python编程基础指南
- 2024-12-24Python编程入门指南
- 2024-12-24Python编程基础入门
- 2024-12-24Python编程基础:变量与数据类型
- 2024-12-23使用python部署一个usdt合约,部署自己的usdt稳定币
- 2024-12-20Python编程入门指南