代码随想录算法【Day10】

今日只做一题,剩下的题后面补

232.用栈实现队列

复制代码
class MyQueue {
public:
    stack<int> stIn;
    stack<int> stOut;
    /** Initialize your data structure here. */
    MyQueue() {

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

    /** Removes the element from in front of queue and returns that element. */
    int pop() {
        // 只有当stOut为空的时候,再从stIn里导入数据(导入stIn全部数据)
        if (stOut.empty()) {
            // 从stIn导入数据直到stIn为空
            while(!stIn.empty()) {
                stOut.push(stIn.top());
                stIn.pop();
            }
        }
        int result = stOut.top();
        stOut.pop();
        return result;
    }

    /** Get the front element. */
    int peek() {
        int res = this->pop(); // 直接使用已有的pop函数
        stOut.push(res); // 因为pop函数弹出了元素res,所以再添加回去
        return res;
    }

    /** Returns whether the queue is empty. */
    bool empty() {
        return stIn.empty() && stOut.empty();
    }
};
相关推荐
s***P982几秒前
Spring数据库原理 之 DataSource
java·数据库·spring
0***h9421 分钟前
oracle 12c查看执行过的sql及当前正在执行的sql
java·sql·oracle
q***01772 分钟前
spring loC&DI 详解
java·spring·rpc
念越2 分钟前
判断两棵二叉树是否相同(力扣)
算法·leetcode·入门
im_AMBER4 分钟前
Canvas架构手记 05 鼠标事件监听 | 原生事件封装 | ctx 结构化对象
前端·笔记·学习·架构
JIngJaneIL5 分钟前
农产品电商|基于SprinBoot+vue的农产品电商系统(源码+数据库+文档)
java·前端·数据库·vue.js·spring boot·毕设·农产品电商系统
w***74177 分钟前
Nginx—Rewrite
java·数据库·nginx
切糕师学AI7 分钟前
Spring 是什么?
java·后端·spring
星释8 分钟前
Rust 练习册 97:Run-Length Encoding 压缩算法
java·linux·rust
Tongfront10 分钟前
前端通用submit方法
开发语言·前端·javascript·react