剑指OFFER 用两个栈实现队列

Posted virgil_devil

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了剑指OFFER 用两个栈实现队列相关的知识,希望对你有一定的参考价值。

剑指OFFER 用两个栈实现队列

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

    int pop() {
        if(stack2.empty())
        {
            while(!stack1.empty())
            {
                stack2.push(stack1.top());
                stack1.pop();
            }
        }
        if(stack2.empty())return 0;
        int res = stack2.top();
        stack2.pop();
        return res;

    }

private:
    stack<int> stack1;
    stack<int> stack2;
};class Solution
{
public:
    void push(int node) {
        stack1.push(node);
    }

    int pop() {
        if(stack2.empty())
        {
            while(!stack1.empty())
            {
                stack2.push(stack1.top());
                stack1.pop();
            }
        }
        if(stack2.empty())return 0;
        int res = stack2.top();
        stack2.pop();
        return res;

    }

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

以上是关于剑指OFFER 用两个栈实现队列的主要内容,如果未能解决你的问题,请参考以下文章

剑指 Offer 09. 用两个栈实现队列

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

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

《剑指Offer——面试题9:用两个栈实现队列》代码

《剑指offer》— JavaScript用两个栈实现队列

剑指offer用两个栈实现队列