python3__leecode/面试题 03.04. 化栈为队
2021/7/16 11:15:59
本文主要是介绍python3__leecode/面试题 03.04. 化栈为队,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
面试题 03.04. 化栈为队
- 一、刷题内容
- 原题链接
- 内容描述
- 二、解题方法
- 1.方法一
一、刷题内容
原题链接
https://leetcode-cn.com/problems/implement-queue-using-stacks-lcci/
内容描述
实现一个MyQueue类,该类用两个栈来实现一个队列。
示例:
MyQueue queue = new MyQueue(); queue.push(1); queue.push(2); queue.peek(); // 返回 1 queue.pop(); // 返回 1 queue.empty(); // 返回 false
说明:
你只能使用标准的栈操作 – 也就是只有 push to top, peek/pop from top, size 和 is empty 操作是合法的。
你所使用的语言也许不支持栈。你可以使用 list 或者 deque(双端队列)来模拟一个栈,只要是标准的栈操作即可。
假设所有操作都是有效的 (例如,一个空的队列不会调用 pop 或者 peek 操作)。
二、解题方法
1.方法一
peek:查看首个元素,不会移除首个元素,如果队列是空的就返回null
class MyQueue: def __init__(self): self.pushs = [] self.pops = [] def push(self, x: int) -> None: self.pushs.append(x) def pop(self) -> int: if len(self.pops)==0: for i in range(len(self.pushs)): self.pops.append(self.pushs.pop()) return self.pops.pop() def peek(self) -> int: if len(self.pops)==0: for i in range(len(self.pushs)): self.pops.append(self.pushs.pop()) temp = self.pops.pop() self.pops.append(temp) return temp def empty(self) -> bool: if len(self.pushs)==0 and len(self.pops)==0: return True else: return False # Your MyQueue object will be instantiated and called as such: # obj = MyQueue() # obj.push(x) # param_2 = obj.pop() # param_3 = obj.peek() # param_4 = obj.empty()
这篇关于python3__leecode/面试题 03.04. 化栈为队的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-12-20Python编程入门指南
- 2024-12-20Python编程基础与进阶
- 2024-12-19Python基础编程教程
- 2024-12-19python 文件的后缀名是什么 怎么运行一个python文件?-icode9专业技术文章分享
- 2024-12-19使用python 把docx转为pdf文件有哪些方法?-icode9专业技术文章分享
- 2024-12-19python怎么更换换pip的源镜像?-icode9专业技术文章分享
- 2024-12-19Python资料:新手入门的全面指南
- 2024-12-19Python股票自动化交易实战入门教程
- 2024-12-19Python股票自动化交易入门教程
- 2024-12-18Python量化入门教程:轻松掌握量化交易基础知识