剑指offer第五题。

题目描述

用两个栈来实现一个队列,完成队列的PushPop操作。 队列中的元素为int类型。

解题思路

队列是先进先出,栈是先进后出,如何用两个栈来实现这种先进先出呢?

其实很简单,我们假设用stack1专门来装元素,那么直接stack1.pop肯定是不行的,这个时候stack2就要发挥作用了。

我们的规则是:只要stack2中有元素就pop,如果stack2为空,则将stack1中所有元素倒进satck2中,就是说,新元素只进stack1,元素出来只从stack2出来。

这样子,就能保证每次从stack2pop出来的元素就是最老的元素了。

我的答案

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import java.util.Stack;

public class Solution{
//负责装元素
Stack<Integer> stack1 = new Stack<Integer>();
//负责出元素
Stack<Integer> stack2 = new Stack<Integer>();

public void push(int node) {
stack1.push(node);
}

//主要思想是:stack2有元素就pop,没有元素就将stack1中所有元素倒进来再pop
public int pop() throws Exception{
if(!stack2.isEmpty()){
int node = stack2.pop();
return node;
}else{
if(stack1.isEmpty()){
throw new Exception("no valid element");
}
while(!stack1.isEmpty()){
stack2.push(stack1.pop());
}
return stack2.pop();
}
}
}