当前位置: 首页 > article >正文

27-队列练习-LeetCode232用栈实现队列

题目

请你仅使用两个栈实现先入先出队列。队列应当支持一般队列支持的所有操作(push、pop、peek、empty):

实现 MyQueue 类:

    void push(int x) 将元素 x 推到队列的末尾
    int pop() 从队列的开头移除并返回元素
    int peek() 返回队列开头的元素
    boolean empty() 如果队列为空,返回 true ;否则,返回 false

说明:

你只能使用标准的栈操作 —— 也就是只有 push to top, peek/pop from top, size, 和 is empty 操作是合法的。

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

示例 1:

输入:
["MyQueue", "push", "push", "peek", "pop", "empty"]
[[], [1], [2], [], [], []]
输出:
[null, null, null, 1, 1, false]

解释:
MyQueue myQueue = new MyQueue();
myQueue.push(1); // queue is: [1]
myQueue.push(2); // queue is: [1, 2] (leftmost is front of the queue)
myQueue.peek(); // return 1
myQueue.pop(); // return 1, queue is [2]
myQueue.empty(); // return false

提示:

    1 <= x <= 9
    最多调用 100 次 push、pop、peek 和 empty
    假设所有操作都是有效的 (例如,一个空的队列不会调用 pop 或者 peek 操作)

进阶:

你能否实现每个操作均摊时间复杂度为 O(1) 的队列?换句话说,执行 n 个操作的总时间复杂度为 O(n) ,即使其中一个操作可能花费较长时间。


思路

 


代码

class MyQueue {
    //s1存储具体元素的栈
    private Stack<Integer> s1;
    //s2作为辅助栈
    private Stack<Integer> s2;

    public MyQueue() {
        this.s1 = new Stack<>();
        this.s2 = new Stack<>();
    }
    
    public void push(int x) {
        if(s1.isEmpty()) {
            s1.push(x);
        } else {
            while(!s1.isEmpty()) {
                s2.push(s1.pop());
            }
            //直接将队尾元素入s1
            s1.push(x);
            //将s2的所有元素依次出栈再入s1
            while(!s2.isEmpty()) {
                s1.push(s2.pop());
            }
        }
    }
    
    public int pop() {
        return s1.pop();
    }
    
    public int peek() {
        return s1.peek();
    }
    
    public boolean empty() {
        return s1.isEmpty();
    }
}

/**
 * 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();
 * boolean param_4 = obj.empty();
 */


http://www.kler.cn/a/4284.html

相关文章:

  • 菜品管理(day03)
  • [0242-07].第09节:SpringBoot中简单功能分析
  • Conda的一些常用命令
  • 换了城市ip属地会变吗?为什么换了城市IP属地不变
  • 大文件上传的解决办法~文件切片、秒传、限制文件并发请求。。。
  • 【安卓开发】【Android】总结:安卓技能树
  • 阿里云服务器普通安全组和企业级安全组区别对比
  • Typora使用
  • led小间距显示屏在会议室使用有什么优势
  • 自己动手写chatGPT:神经网络的神经元和损失函数
  • 天线系统的定义、性能参数、天线种类及馈线系统
  • 常用正则表达式(大全)
  • makop勒索病毒|勒索病毒解密|勒索病毒恢复|数据库修复
  • 分享NVIDIA GTC干货_用软件引领车辆电子架构
  • 如何简单实现ELT?
  • Nginx安装部署
  • 蚁群算法优化
  • Spark运行架构
  • pt05Encapsulationinherit
  • FME安装问题以及FME处理dwg代码示例
  • 基于springboot实现财务管理系统【源码+论文】
  • js+echarts画图:代码没报错,但是图表不显示
  • Matlab进阶绘图第11期—方块热图灵活版
  • 计算广告(六)
  • Linux: 设备节点创建移除过程简析
  • javascript的严格模式与有什么特点?