用两个栈实现队列
题目:用两个栈来实现一个队列,完成队列的Push和Pop操作。 队列中的元素为int类型。
栈:后进先出,即最后被压人(push)栈的元素会第一个被弹出(pop)。间。
队列:先进先出。
代码
import java.util.Stack;
public class QueueWithTwoStacks {
Stack<Integer> stack1 = new Stack<Integer>();
Stack<Integer> stack2 = new Stack<Integer>();
// 定义队列的push函数,只往stack1中压入元素
public void push(int node){
stack1.push(node);
}
// 定义出栈函数
public int pop(){
while(!stack1.isEmpty()){
stack2.push(stack1.pop());//如果栈1不为空,则把栈1的元素取出压入栈2
}
int first = stack2.pop();
while(!stack2.isEmpty()){
stack1.push(stack2.pop());//出完栈后,将栈2pop出的数push回栈1中,接受下次的操作
}
return first;
}
}