push時直接入棧stack1,pop時若stack2爲空則stack1出棧到stack2後stack2.pop(),不然stack2直接pop。
時間複雜度O(1)。java
import java.util.Stack; 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() { if(stack2.empty()) { while(!stack1.empty()) { stack2.push(stack1.pop()); } } return stack2.pop(); } }