其他分享
首页 > 其他分享> > 22.用栈实现队列

22.用栈实现队列

作者:互联网

232. 用栈实现队列

请你仅使用两个栈实现先入先出队列。队列应当支持一般队列支持的所有操作(pushpoppeekempty):

实现 MyQueue 类:

说明:

 

示例 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 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