剑指offer最优解Java版-用两个栈实现队列
2019-06-22 本文已影响5人
全菜工程师小辉
题目描述
用两个栈来实现一个队列,完成队列的Push和Pop操作。 队列中的元素为int类型。
解决方案
class Solution {
static Stack<Integer> stack1 = new Stack<Integer>();
static Stack<Integer> stack2 = new Stack<Integer>();
public static void push(int node) {
stack1.push(node);
}
public static int pop() {
if (!stack2.isEmpty()) {
return stack2.pop();
}
while (!stack1.isEmpty()) {
stack2.push(stack1.pop());
}
return stack2.pop();
}
public static void main(String[] args) {
}
}
哎呀,如果我的名片丢了。微信搜索“全菜工程师小辉”,依然可以找到我