题目
用两个栈实现一个队列,完成队列的Push和Pop操作。
题解
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() throws Exception {
if(stack2.isEmpty()){
while(!stack1.empty()){
stack2.push(stack1.pop());
}
}
if(stack2.empty()){
throw new IllegalArgumentException("链表为空");
}
return stack2.pop();
}
}
注意点
注意特殊情况。
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。