【每日编程-329期】LeetCode232用栈实现队列

教育   2024-10-19 10:03   广西  

LeetCode232用栈实现队列


每日编程中遇到任何疑问、意见、建议请公众号留言或直接撩Q474356284(备注每日编程)



使用栈实现队列的下列操作:

  • push(x) -- 将一个元素放入队列的尾部。

  • pop() -- 从队列首部移除元素。

  • peek() -- 返回队列首部的元素。

  • empty() -- 返回队列是否为空。

示例:

MyQueue queue = new MyQueue();

queue.push(1);
queue.push(2);
queue.peek(); // 返回 1
queue.pop(); // 返回 1
queue.empty(); // 返回 false

说明:

  • 你只能使用标准的栈操作 -- 也就是只有 push to toppeek/pop from topsize, 和 is empty 操作是合法的。

  • 你所使用的语言也许不支持栈。你可以使用 list 或者 deque(双端队列)来模拟一个栈,只要是标准的栈操作即可。

  • 假设所有操作都是有效的 (例如,一个空的队列不会调用 pop 或者 peek 操作)。


解决方法:

(1)算法的基本思想:

使用两个栈。

插入一个元素,则向栈my_stack中push一个元素,当队列元素需要出队或者程序访问队头元素时,先将栈my_stack中的全部元素倒入栈tem中,此时取栈tmp的栈顶元素,即为队头,如需访问则取top即可,如需出队,则执行pop。(在pop和peek中别忘了将temp中的元素再倒回去)

(2)代码实现:

class MyQueue {
public:
    /** Initialize your data structure here. */
    MyQueue() {

    }

    /** Push element x to the back of queue. */
    void push(int x) {
        my_stack.push(x);

    }

    /** Removes the element from in front of queue and returns that element. */
    int pop() {
        stack<int> tmp;
        while(!my_stack.empty()){
            tmp.push(my_stack.top());
            my_stack.pop();
        }
        int rtn = tmp.top();
        tmp.pop();                        //peek里面没有这一步
        while(!tmp.empty()){              //别忘了将temp中元素再倒回去
            my_stack.push(tmp.top());
            tmp.pop();
        }
        return rtn;
    }

    /** Get the front element. */
    int peek() {
        stack<int> tmp;
        while (!my_stack.empty()) {
            tmp.push(my_stack.top());
            my_stack.pop();
        }
        int rtn = tmp.top();
        while (!tmp.empty()) {
            my_stack.push(tmp.top());
            tmp.pop();
        }
        return rtn;
    }

    /** Returns whether the queue is empty. */
    bool empty() {
        return my_stack.empty();
    }

    private:
    stack<int> my_stack;
};

/**
 * Your MyQueue object will be instantiated and called as such:
 * MyQueue* obj = new MyQueue();
 * obj->push(x);
 * int param_2 = obj->pop();
 * int param_3 = obj->peek();
 * bool param_4 = obj->empty();
 */

明日预告:LeeCode225用队列实现栈

使用队列实现栈的下列操作:

  • push(x) -- 元素 x 入栈

  • pop() -- 移除栈顶元素

  • top() -- 获取栈顶元素

  • empty() -- 返回栈是否为空

注意:

  • 你只能使用队列的基本操作-- 也就是 push to backpeek/pop from frontsize, 和 is empty 这些操作是合法的。

  • 你所使用的语言也许不支持队列。 你可以使用 list 或者 deque(双端队列)来模拟一个队列 , 只要是标准的队列操作即可。

  • 你可以假设所有操作都是有效的(例如, 对一个空的栈不会调用 pop 或者 top 操作)。

class MyStack {
public:
    /** Initialize your data structure here. */
    MyStack() {

    }

    /** Push element x onto stack. */
    void push(int x) {

    }

    /** Removes the element on top of the stack and returns that element. */
    int pop() {

    }

    /** Get the top element. */
    int top() {

    }

    /** Returns whether the stack is empty. */
    bool 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();
 */



灰灰考研
最全的【计算机考研】【软件考研】考研信息! 最丰富的共享资料! 最大程度上帮助学渣狗登上研究生大门!
 最新文章