题目描述
用两个栈来实现一个队列,完成队列的Push和Pop操作。 队列中的元素为int类型。
代码实现
package 两个栈实现一个队列;
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);
}
public int pop() {
if (!stack2.isEmpty()){
return stack2.pop();
}else {
while (!stack1.isEmpty()){
int node = stack1.pop();
stack2.push(node);
}
return stack2.pop();
}
}
public static void main(String[] args){
Solution solution = new Solution();
solution.push(1);
solution.push(2);
solution.push(3);
System.out.println(solution.pop());
System.out.println(solution.pop());
}
}