代码随想录算法训练营第十天 | 225. 用队列实现栈|232. 用栈实现队列
已解答
简单
相关标签
相关企业
请你仅使用两个栈实现先入先出队列。队列应当支持一般队列支持的所有操作(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(双端队列)来模拟一个栈,只要是标准的栈操作即可。
示例 1:
输入:
["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
操作)
type MyQueue struct {
stackA []int
stackB []int
}
func Constructor() MyQueue {
return MyQueue{}
}
func (this *MyQueue) Push(x int) {
this.stackA = append(this.stackA, x)
}
func (this *MyQueue) Pop() int {
this.AdjustStack()
val := this.stackB[len(this.stackB)-1]
this.stackB = this.stackB[:len(this.stackB)-1]
return val
}
func (this *MyQueue) AdjustStack() {
if len(this.stackB) == 0 {
for len(this.stackA) != 0 {
val := this.stackA[len(this.stackA)-1]
this.stackA = this.stackA[:len(this.stackA)-1]
this.stackB = append(this.stackB, val)
}
}
}
func (this *MyQueue) Peek() int {
this.AdjustStack()
return this.stackB[len(this.stackB)-1]
}
func (this *MyQueue) Empty() bool {
return len(this.stackA) == 0 && len(this.stackB) == 0
}
已解答
简单
相关标签
相关企业
请你仅使用两个队列实现一个后入先出(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
总想用o(1)的方法完成,没有想到每个都是o(n)操作
type MyQueue struct {
stackA []int
stackB []int
}
func Constructor() MyQueue {
return MyQueue{}
}
func (this *MyQueue) Push(x int) {
this.stackA = append(this.stackA, x)
}
func (this *MyQueue) Pop() int {
this.AdjustStack()
val := this.stackB[len(this.stackB)-1]
this.stackB = this.stackB[:len(this.stackB)-1]
return val
}
func (this *MyQueue) AdjustStack() {
iflen(this.stackB) == 0 {
forlen(this.stackA) != 0 {
val := this.stackA[len(this.stackA)-1]
this.stackA = this.stackA[:len(this.stackA)-1]
this.stackB = append(this.stackB, val)
}
}
}
func (this *MyQueue) Peek() int {
this.AdjustStack()
return this.stackB[len(this.stackB)-1]
}
func (this *MyQueue) Empty() bool {
returnlen(this.stackA) == 0 && len(this.stackB) == 0
}
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 25岁的心里话
· 闲置电脑爆改个人服务器(超详细) #公网映射 #Vmware虚拟网络编辑器
· 零经验选手,Compose 一天开发一款小游戏!
· 因为Apifox不支持离线,我果断选择了Apipost!
· 通过 API 将Deepseek响应流式内容输出到前端