• 通过两个stack来实现Queue


    题目

    As the title described, you should only use two stacks to implement a queue’s actions.

    The queue should support push(element), pop() and top() where pop is pop the first(a.k.a front) element in the queue.

    Both pop and top methods should return the value of first element.

    正如标题所述,你只能使用两个栈来实现队列的一些操作。队列应支持push(element),pop() 和 top(),其中pop是弹出队列中的第一个(最前面的)元素。pop和top方法都应该返回第一个元素的值。

    题目解析

    Stack是先进后出 First in Last Out
    Queue 是先进先出 First in First Out

    通过两个stack来回颠倒可以实现Queue结构
    在这里插入图片描述

    思路

    两个stack
    push入队 时候,即 添加元素,直接放入 stack1

    pop时候,从stack2开始往出弹,如果stack2为空,则执行stack1全部放入stack2
    然后,再从stack2往出弹。

    top时候,直接执行stack。peek() 查看stack2的顶端元素就可以了
    如果stack2为空,就把stack1里面全部放入stack2,然后从stack2取peek

    总结
    入队时,将元素压入s1。

    出队时,判断s2是否为空,如不为空,则直接弹出顶元素;

    如为空,则将s1的元素逐个“倒入”s2,把最后一个元素弹出并出队。

    代码

    public class MyQueue {
    
        Stack<Integer> stack1;
        Stack<Integer> stack2;
    
        public MyQueue() {
            // do intialization if necessary
            stack1 = new Stack<>();
            stack2 = new Stack<>();
        }
    
        /*
         * @param element: An integer
         * @return: nothing
         */
        public void push(int element) {
            // write your code here
            stack1.push(element);
        }
    
        /*
         * @return: An integer
         */
        public int pop() {
            // write your code here
            if(!stack2.isEmpty()){
                return stack2.pop();
            }
    
            while(!stack1.isEmpty()){
                stack2.push(stack1.pop());
            }
    
            return stack2.pop();
        }
    
        /*
         * @return: An integer
         */
        public int top() {
            // write your code here
            if(!stack2.isEmpty()){
                return stack2.peek();
            }
    
            while( !stack1.isEmpty()){
                stack2.push(stack1.pop());
            }
    
            return stack2.peek();
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52

    Reference

    https://www.lintcode.com/problem/40/solution/18895
    https://www.cnblogs.com/wanghui9072229/archive/2011/11/22/2259391.html

  • 相关阅读:
    C++初级---模板初阶
    AGV是如何和WMS系统对接的?
    鹰潭实验室设计要素盘点
    Python 基础合集1:基本数据类型
    vue2 在循环里,给字体加上随机颜色并加上随机图标且少重复
    Android&Flutter混合开发
    Electron实战之入门
    手动快速批量修改文件名
    快速入门一篇搞定RocketMq-实现微服务实战落地
    将中文名格式化输出为英文名
  • 原文地址:https://blog.csdn.net/weixin_46969441/article/details/125455795