import java.util.Stack;
public class Solution {
Stack<integer> stack1 = new Stack<integer>();
Stack<integer> stack2 = new Stack<integer>();</integer></integer></integer></integer>
public void push(int node) {
while( !stack1.isEmpty()) {
stack2.push(stack1.pop());
}
stack1.push(node);
while( !stack2.isEmpty()) {
stack1.push(stack2.pop());
}
}
public int pop() {
return stack1.pop();
}}
利用一个栈来颠倒入栈顺序

京公网安备 11010502036488号