其他分享
首页 > 其他分享> > 剑指offer之用两个栈实现队列

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

作者:互联网

题目描述

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

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

    int pop() {
        if(stack1.empty())
        {
            return -1;
        }
        
        while(!stack1.empty())
        {
            stack2.push(stack1.top());
            stack1.pop();
        }
        int rt = stack2.top();
        stack2.pop();
        while(!stack2.empty())
        {
            stack1.push(stack2.top());
            stack2.pop();
        }
        return rt;
    }

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

 

标签:offer,队列,之用,pop,int,push,stack2,stack1
来源: https://blog.csdn.net/A18373279153/article/details/113806667