目录
题目
Implement the following operations of a queue using stacks.
- push(x) – Push element x to the back of queue.
- pop() – Removes the element from in front of queue.
- peek() – Get the front element.
- empty() – Return whether the queue is empty.
Note
- You must use only standard operations of a stack – which means only push to top, peek/pop from top, size, and is empty operations are valid.
- Depending on your language, stack may not be supported natively. You may simulate a stack by using a list or deque (double-ended queue), as long as you use only standard operations of a stack.
- You may assume that all operations are valid (for example, no pop or peek operations will be called on an empty queue).
解决方案
1 | class MyQueue { |
注意事项
- 使用两个栈来实现队列。
- 思路是,对于push()操作,直接向第一个栈push即可;对于pop()操作,将第一个栈所有元素弹出并压入第二个栈,弹出第二个栈的栈顶元素,再把剩下的元素依次弹出并压回第一个栈;对于peek()操作,将第一个栈所有元素弹出并压入第二个栈,查看第二个栈的栈顶元素(只是查看),之后将第二个栈的所有元素依次弹出并压回第一个栈。