首页 > 其他 > 详细

LeetCode "Implement Queue using Stacks"

时间:2015-07-07 07:01:21      阅读:218      评论:0      收藏:0      [点我收藏+]

Very similar as "Implement Stack using Queues".

class Queue 
{
    stack<int> _s0;
    stack<int> _s1;
    int _front;    

public:
    // Push element x to the back of queue.
    void push(int x) 
    {
        if(_s0.empty()) _front = x;
        _s0.push(x);    
    }

    // Removes the element from in front of queue.
    void pop(void) 
    {
        while(!_s0.empty())
        {
            _s1.push(_s0.top());
            _s0.pop();
        }
        _s1.pop();
        if(!_s1.empty())
        {
            _front = _s1.top();
            while(!_s1.empty())
            {
                _s0.push(_s1.top());
                _s1.pop();
            }
        }
    }

    // Get the front element.
    int peek(void) {
        return _front;
    }

    // Return whether the queue is empty.
    bool empty(void) {
        return _s0.empty();
    }
};

 

LeetCode "Implement Queue using Stacks"

原文:http://www.cnblogs.com/tonix/p/4625852.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!