队列和栈 第一题
简单
class Solution
{
public:
    void push(int node) {
        // 把stack2的先全部保存进来 再压入新的
        while(!stack2.empty())
        {
            stack1.push(stack2.top());
            stack2.pop();
        }
        stack1.push(node);
    }

    int pop() {
        // 把stack1的先全部保存进来 再输出新的
        while(!stack1.empty())
        {
            stack2.push(stack1.top());
            stack1.pop();
        }
        int a = stack2.top();
        stack2.pop();
        return a;
    }

private:
    stack<int> stack1;
    stack<int> stack2;
};