共计 1362 个字符,预计需要花费 4 分钟才能阅读完成。
一、题目粗心
标签: 栈和队列
https://leetcode.cn/problems/implement-queue-using-stacks
请你仅应用两个栈实现先入先出队列。队列该当反对个别队列反对的所有操作(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 操作)
进阶:
你是否实现每个操作均摊工夫复杂度为 O(1) 的队列?换句话说,执行 n 个操作的总工夫复杂度为 O(n),即便其中一个操作可能破费较长时间。
二、解题思路
用两个栈来实现一个队列:因为须要失去先入先出的后果,所以必然要通过一个额定栈翻一次数组。这个翻转过程既能够在插入时实现,也能够在取值时实现。
上面解决在插入时实现翻转过程。
三、解题办法
3.1 Java 实现
class MyQueue {
Stack<Integer> stackA;
Stack<Integer> stackB;
public MyQueue() {stackA = new Stack<>();
stackB = new Stack<>();}
public void push(int x) {if (stackA.isEmpty()) {stackA.push(x);
return;
}
while (!stackA.isEmpty()) {stackB.push(stackA.pop());
}
stackB.push(x);
while (!stackB.isEmpty()) {stackA.push(stackB.pop());
}
}
public int pop() {return stackA.pop();
}
public int peek() {return stackA.peek();
}
public boolean empty() {return stackA.isEmpty();
}
}
四、总结小记
- 2022/8/7 周末也要刷一题
正文完