剑指offer_用两个栈实现队列

时间:2022-08-22 17:39:16

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

思路:始终用stack1作为入栈,stack2作为一个临时的容器,当队列时,将stack1的所有元素清空转到stack2中,将stack2顶部的元素出栈即为出队列。最后再将stack2中的所有元素清空重新放回stack1中。

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

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

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