LeetCode---Implement Stack using Queues

题目大意:用队列实现栈的模拟,要求能够进行push(),pop(),top(),empty()操作。

算法思想:

利用连个队列q1,q2来模栈,若两 队列都为空则说明栈为空;当入栈时判断哪个队列不空则将原素入该队列,如果队列都空则将元素入队列1;当做弹栈的操作时,判断哪个队列不空,将其元素取出且出队列此时判断队列是否为空若不空入队列2,若空则说明是栈顶元素 不入队列2同理可知取栈顶元素的操作。

代码如下:

class Stack {
public:
    queue<int> q1,q2;
    // Push element x onto stack.
    void push(int x) {
        if(!q1.empty())
           q1.push(x);
        else if(!q2.empty())
           q2.push(x);
        else 
           q1.push(x);
    }

    // Removes the element on top of the stack.
    void pop() {
        if(!q1.empty()){
            while(!q1.empty()){
                int temp=q1.front();
                q1.pop();
                if(!q1.empty())
                   q2.push(temp);
            }
        }
        else{
            while(!q2.empty()){
                int temp=q2.front();
                q2.pop();
                if(!q2.empty())
                   q1.push(temp);
            }
        }
    }

    // Get the top element.
    int top() {
         if(!q1.empty()){
            while(!q1.empty()){
                int temp=q1.front();
                q1.pop();
                if(!q1.empty())
                   q2.push(temp);
                else {
                 q2.push(temp);
                   return temp;
                }
           }
        }
        else{
            while(!q2.empty()){
                int temp=q2.front();
                q2.pop();
                if(!q2.empty())
                   q1.push(temp);
                else{
                   q1.push(temp);
                   return temp;
                }
           }
        }
    }

    // Return whether the stack is empty.
    bool empty() {
        return q1.empty()&&q2.empty();
    }
};


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值