Leetcode232.用栈实现队列-代码随想录

本文介绍了使用两个栈实现的MyQueue类,通过前后栈操作来模拟队列的行为,包括push、pop、peek和empty方法的实现。
摘要由CSDN通过智能技术生成

题目:


代码(首刷自解 2024年1月18日):

class MyQueue {
private:
    stack<int> stack1;
    stack<int> stack2;
public:
    MyQueue() {
        stack<int> stack1;
        stack<int> stack2;
    }
    
    void push(int x) {
        stack1.push(x);
    }
    
    int pop() {
        while(!stack1.empty()){
            stack2.push(stack1.top());
            stack1.pop();
        }
        int a = stack2.top();
        stack2.pop();
        while(!stack2.empty()){
            stack1.push(stack2.top());
            stack2.pop();
        }
        return a;
    }
    
    int peek() {
        int res = this->pop();
        stack2.push(res);
        return res;
    }
    
    bool empty() {
        if(stack1.empty()) return true;
        else return false;
    }
};

代码(二刷自解 2024年5月4日 10min)

class MyQueue {
private:
    stack<int> _stk1;//入栈
    stack<int> _stk2;//出栈
    void judge() {
        if (_stk2.empty()) {
            while(!_stk1.empty()) {
                _stk2.push(_stk1.top());
                _stk1.pop();
            }
        }
    }
public:
    MyQueue() {

    }
    
    void push(int x) {
        _stk1.push(x);
    }
    
    int pop() {
        judge();
        int res = _stk2.top();
        _stk2.pop();
        return res;
    }
    
    int peek() {
        judge();
        return _stk2.top();
    }
    
    bool empty() {
        judge();
        return _stk2.empty();
    }
};

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

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值