码迷,mamicode.com
首页 > 其他好文 > 详细

Leetcode 225. Implement Stack using Queues

时间:2018-07-14 16:30:22      阅读:103      评论:0      收藏:0      [点我收藏+]

标签:obj   div   style   The   vat   mys   ali   you   queue   

class MyStack {
public:
    /** Initialize your data structure here. */
    MyStack() {
        
    }
    /** Push element x onto stack. */
    void push(int x) {
        std::queue<int> aux;
        aux.push(x);
        while(!_data.empty())
        {
            aux.push(_data.front());
            _data.pop();
        }
        swap(aux,_data);
    }
    
    /** Removes the element on top of the stack and returns that element. */
    int pop() {
        int x = _data.front();
        _data.pop();
        return x;
    }
    
    /** Get the top element. */
    int top() {
        return _data.front();
    }
    
    /** Returns whether the stack is empty. */
    bool empty() {
        return _data.empty();
    }
private:
    std::queue<int> _data;
};

/**
 * Your MyStack object will be instantiated and called as such:
 * MyStack obj = new MyStack();
 * obj.push(x);
 * int param_2 = obj.pop();
 * int param_3 = obj.top();
 * bool param_4 = obj.empty();
 */

 

Leetcode 225. Implement Stack using Queues

标签:obj   div   style   The   vat   mys   ali   you   queue   

原文地址:https://www.cnblogs.com/randyniu/p/9309440.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!