Day9 栈与队列专项 — 互相实现

文章介绍了两种数据结构的互换实现:使用两个栈来模拟队列的操作,以及使用两个队列来模拟栈的行为。在栈实现队列中,入栈操作直接对in_stack执行,而出栈和查看队头元素则借助out_stack。在队列实现栈时,push操作直接对normal_queue执行,而pop和top操作需要将队列元素反转到back_queue后再处理。
摘要由CSDN通过智能技术生成

LeetCode 232 用栈实现队列

解题思路:一个入栈,一个出栈,共同组成队列

class MyQueue {
public:
    MyQueue() {

    }
    
    void push(int x) {
        in_stack.push(x);
    }
    
    int pop() {
        auto tmp = peek();
        out_stack.pop();
        return tmp;
    }
    
    int peek() {
        if ( !out_stack.empty() ) {
            return out_stack.top();
        }
        while( !in_stack.empty() ) {
            out_stack.push(in_stack.top());
            in_stack.pop();
        }
        return out_stack.top();
    }
    
    bool empty() {
        return in_stack.empty() && out_stack.empty();
    }

private:
    stack<int> in_stack; // 用于入队
    stack<int> out_stack; // 用于出队
};

LeetCode 225 用队列实现栈

解题思路:

  • 需要 back queue
  • 一个队列也可以,队列头部的元素重新入队,再弹出头部元素
class MyStack {
public:
    MyStack() {

    }
    
    void push(int x) {
        normal_queue.push(x);
    }
    
    int pop() {
        int index = normal_queue.size() - 1;
        while(index-- > 0) {
            back_queue.push(normal_queue.front());
            normal_queue.pop();
        }
        int ret = normal_queue.front();
        normal_queue.pop();
        normal_queue = back_queue;
        while(!back_queue.empty()) {
            back_queue.pop();
        }
        return ret;
    }
    
    int top() {
        return normal_queue.back();
    }
    
    bool empty() {
        return normal_queue.empty();
    }

private:
    queue<int> normal_queue;
    queue<int> back_queue;
};

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值