22.用栈实现队列
作者:互联网
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
操作)
1 class MyQueue { 2 // 将一个栈当作输入栈,用于压入 push\texttt{push}push 传入的数据 3 Deque<Integer> inStack; 4 // 另一个栈当作输出栈,用于 pop 和 peek 操作 5 Deque<Integer> outStack; 6 7 public MyQueue() { 8 inStack = new ArrayDeque<Integer>(); 9 outStack = new ArrayDeque<Integer>(); 10 } 11 12 public void push(int x) { 13 inStack.push(x); 14 } 15 16 public int pop() { 17 // 每次 pop 时,若输出栈为空则将输入栈的全部数据依次弹出并压入输出栈 18 if (outStack.isEmpty()) { 19 in2out(); 20 } 21 // 这样输出栈从栈顶往栈底的顺序就是队列从队首往队尾的顺序 22 return outStack.pop(); 23 } 24 25 public int peek() { 26 // 每次 peek 时,若输出栈为空则将输入栈的全部数据依次弹出并压入输出栈 27 if (outStack.isEmpty()) { 28 in2out(); 29 } 30 // 这样输出栈从栈顶往栈底的顺序就是队列从队首往队尾的顺序 31 return outStack.peek(); 32 33 } 34 35 public boolean empty() { 36 return inStack.isEmpty() && outStack.isEmpty(); 37 } 38 39 // 内置函数,仅在类中调用,负责将输入栈的数据导入空的输出栈 40 private void in2out() { 41 while (!inStack.isEmpty()) { 42 outStack.push(inStack.pop()); 43 } 44 } 45 } 46 47 /** 48 * Your MyQueue object will be instantiated and called as such: 49 * MyQueue obj = new MyQueue(); 50 * obj.push(x); 51 * int param_2 = obj.pop(); 52 * int param_3 = obj.peek(); 53 * boolean param_4 = obj.empty(); 54 */
关键点:1.设置输入栈和输出栈,实现队列的先入先出
2.设置一个in2out函数,将输入栈的数据导入空的输出栈
标签:peek,22,队列,outStack,pop,MyQueue,用栈,push 来源: https://www.cnblogs.com/fulaien/p/16393490.html