LeetCode_232-Implement Queue using Stacks

题意是使用栈实现队列;队列是先进先出,后进后出。

class MyQueue {
public:
    /** Initialize your data structure here. */
    MyQueue() {
        //intput
        m_bSwap = true;
    }
    
    /** Push element x to the back of queue. */
    void push(int x) {
        if(!m_bSwap) {
            while(!m_soutput.empty()) {
                m_sintput.push(m_soutput.top());
                m_soutput.pop();
            }
            m_bSwap = true;
        }
        m_sintput.push(x);
    }
    
    /** Removes the element from in front of queue and returns that element. */
    int pop() {
        if(m_bSwap) {
            while(!m_sintput.empty()) {
                m_soutput.push(m_sintput.top());
                m_sintput.pop();
            }
            m_bSwap = false;
        }
        int nNum = m_soutput.top();
        m_soutput.pop();
        return nNum;
    }
    
    /** Get the front element. */
    int peek() {
        if(m_bSwap) {
            while(!m_sintput.empty()) {
                m_soutput.push(m_sintput.top());
                m_sintput.pop();
            }
            m_bSwap = false;
        }
        return m_soutput.top();
    }
    
    /** Returns whether the queue is empty. */
    bool empty() {
        if(m_sintput.empty() && m_soutput.empty()) {
            return true;
        }
        return false;
    }
 
protected:
    stack<int> m_sintput;
    stack<int> m_soutput;
    bool m_bSwap;
};

可关注公众号了解更多的面试技巧

posted @ 2019-09-30 19:00  yew0  阅读(107)  评论(0编辑  收藏  举报