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

【easy】225. Implement Stack using Queues

时间:2018-01-26 22:45:23      阅读:184      评论:0      收藏:0      [点我收藏+]

标签:就是   object   iat   void   逆序   mys   and   ini   blog   

用队列实现栈。这个实现方法十分的简单,就是在push这一步的时候直接变成逆序。

class MyStack {
private:
    queue<int> q;
    queue<int> q2;
public:
    /** Initialize your data structure here. */
    MyStack() {
        
    }
    
    /** Push element x onto stack. */
    void push(int x) {
        q.push(x);
        for(int i=0;i<q.size()-1;i++)
        {
            q.push(q.front());
            q.pop();
        }
    }
    
    /** Removes the element on top of the stack and returns that element. */
    int pop() {
        int a = q.front();
        q.pop();
        return a;
    }
    
    /** Get the top element. */
    int top() {
        return q.front();
    }
    
    /** Returns whether the stack is empty. */
    bool empty() {
        return q.empty();
    }
};

/**
 * 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();
 */

 

【easy】225. Implement Stack using Queues

标签:就是   object   iat   void   逆序   mys   and   ini   blog   

原文地址:https://www.cnblogs.com/sherry-yang/p/8361358.html

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