public class Solution {
Stack<Integer> stack1 = new Stack<Integer>();
Stack<Integer> stack2 = new Stack<Integer>();
/**
* 思路:
* stack1 用来入栈,stack2 用来出栈。
* 在入栈之前,如果stack2 中还有元素。则将stack2 中所有元素push 到栈stack1之后再对新的值进行入栈
* 在出栈之前,如果stack1 中还有元素。则将stack1 中所有元素push 到栈stack2之后再对新的值进行出栈
*/
public void push(int node) {
while(!stack2.isEmpty()) {
stack1.push(stack2.pop());
}
stack1.push(node);
}
public int pop() {
while(!stack1.isEmpty()) {
stack2.push(stack1.pop());
}
return stack2.pop();
}
}
网友评论