用两个栈实现队列
题目:用两个栈来实现一个队列,完成队列的Push和Pop操作。 队列中的元素为int类型。
思路:一个栈专门放元素,一个栈专门弹出元素,关键是怎么弹出元素,首先的判断这个栈里面是否有元素,如果有,直接弹出元素,如果没有就把另一个栈的元素全部取出在放入该栈中,一定要全部,因为这样可以保证元素的先后次序,然后在弹出元素。
代码:
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()) {
stack2.push(stack1.pop());
}
return stack2.pop();
}
}