题目描述
用两个栈来实现一个队列,完成队列的Push和Pop操作。 队列中的元素为int类型。
解题思路
定义两个栈,其中栈1负责插入元素,栈2负责弹出元素,插入数据的时候直接在栈1中插入,弹出的时候首先看栈2是否为空,不为空直接弹出,为空,则将栈1的元素一次弹出插入到栈2中,若栈1也为空,则抛出异常。
import java.util.Stack;
public class yonglianggezhanlaishixianduilie {
Stack<Integer> stack1 = new Stack<Integer>();
Stack<Integer> stack2 = new Stack<Integer>();
public void push(int node) {
stack1.push(node);
}
public int pop() {
if (stack1.isEmpty() && stack2.isEmpty())
return -1;
if (stack2.isEmpty()) {
while (!stack1.isEmpty())
stack2.push(stack1.pop());
return stack2.pop();
} else {
return stack2.pop();
}
}
}