用两个栈实现队列_剑指offer
程序员文章站
2022-07-10 10:26:03
...
用两个栈来实现一个队列,完成队列的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() {
stack2.clear();
while(!stack1.isEmpty()) {
//堆栈1出栈到堆栈2中
stack2.push(stack1.pop());
}
int result = stack2.pop();
while(stack2.isEmpty()) {
stack1.push(stack2.pop());
}
return result;
}
上一篇: 剑指offer:js实现剪绳子
下一篇: 026-二叉搜索树与双向链表