class Solution
{
void stack1to2() {
while (!stack1.empty()) {
stack2.push(stack1.top());
stack1.pop();
}
}
public:
void push(int node) {
stack1.push(node);
if(stack2.empty()) {
stack1to2();
}
}
int pop() {
if (stack1.empty() && stack2.empty()) {
return -1;
}
if (stack2.empty()) {
stack1to2();
}
int ans = stack2.top();
stack2.pop();
return ans;
}
private:
stack<int> stack1;
stack<int> stack2;
};

京公网安备 11010502036488号