剑指offer--两个栈实现队列

两个栈实现队列

用两个栈来实现一个队列,完成队列的Push和Pop操作。 队列中的元素为int类型

class Solution
{
public:
    void push(int node) {
        stack1.push(node);
    }

    int pop() {
        int res;
        //如果栈2还有元素,先把这些早期进入的元素输出
        if(!stack2.empty()){
            res=stack2.top();
            stack2.pop();
        }else{
            //如果stack2已经空了,进入新一批元素
            while(!stack1.empty()){
                stack2.push(stack1.top());
                stack1.pop();
            }
            res=stack2.top();
            stack2.pop();
        }
        return res;
    }

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

 

posted @ 2020-03-22 21:47  aeipyuan  阅读(81)  评论(0编辑  收藏  举报