cherrychenlee

导航

 

原文地址:https://www.jianshu.com/p/ca110ff2471b

时间限制:1秒 空间限制:32768K

题目描述

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

我的代码

class Solution
{
public:
    //队列是先进先出的,进在队列尾,出在队列头
    void push(int node) {
        stack1.push(node);
        return;
    }

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

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

运行时间:5ms
占用内存:504k

posted on 2019-04-27 22:40  cherrychenlee  阅读(73)  评论(0)    收藏  举报