首页 > 其他 > 详细

用栈实现队列

时间:2015-08-04 00:06:51      阅读:256      评论:0      收藏:0      [点我收藏+]
class Queue {
private:
    stack<int> in;
    stack<int> out;
    
    void reverseStackToOut()
    {
        auto size = in.size();
        for (size_t i = 0; i < size; ++i){
            out.push(in.top());
            in.pop();
        }
    }
public:
    // Push element x to the back of queue.
    void push(int x) {
        in.push(x);
    }
    
    // Removes the element from in front of queue.
    void pop(void) {
        if (!out.empty()){
            out.pop();
            return;
        }
        
        if (in.empty()){
            return;
        }
        else{
            reverseStackToOut();
            out.pop();
        }
    }
    
    // Get the front element.
    int peek(void) {
        if (!out.empty()){
            return out.top();
        }
        
        if (in.empty()){
            return 0;
        }
        else{
            reverseStackToOut();
            return out.top();
        }
        
    }
    
    // Return whether the queue is empty.
    bool empty(void) {
        if (in.empty() && out.empty()){
            return true;
        }
        
        return false;
    }
};

 

用栈实现队列

原文:http://www.cnblogs.com/wuOverflow/p/4700624.html

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