用两个栈实现队列(简单,栈,队列)

题目描述
用两个栈来实现一个队列,完成队列的Push和Pop操作。 队列中的元素为int类型。
栈具有后进先出的特点,队列则是先进先出。

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

    int pop() {
    
    
        if(stack1.empty()) 
        {
    
    
            while(stack2.size())
            {
    
    
                stack1.push(stack2.top());
                stack2.pop();
            }
        }
        int tmp=stack1.top();
        stack1.pop();
        return tmp;
    }

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

猜你喜欢

转载自blog.csdn.net/weixin_43540515/article/details/114242682