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

华电北风吹
天津大学认知计算与应用重点实验室
日期:2015/9/30

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

解析:我的思路是用一个栈来储存数据,入队的话直接在这个栈上入栈,出队的话借助辅助栈,对辅助栈入栈,然后取出头元素,然后把辅助栈上的元素在入到数据栈里面。

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

    int pop()
    {
        if (stack1.empty())
        {
            return NULL;
        }
        while (stack1.empty()==false)
        {
            stack2.push(stack1.top());
            stack1.pop();
        }
        int result = stack2.top();
        stack2.pop();
        while (stack2.empty()==false)
        {
            stack1.push(stack2.top());
            stack2.pop();
        }
        return result;
    }

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

你可能感兴趣的:(剑指offer—用两个栈实现队列)