编程语言
首页 > 编程语言> > 【算法题】1-设计一个有getMin功能的栈

【算法题】1-设计一个有getMin功能的栈

作者:互联网

题目

设计一个特殊的栈,在实现栈的基本功能的基础上,再实现返回栈中最小元素的操作。

要求

解答

在设计上使用两个栈,一个栈用来保存当前栈中的元素,其功能和一个正常的栈没有区别,这个栈记为stackData;另一个栈用于保存每一步的最小值,这个栈记为stackMin.实现方案有2种:

第一种设计方案

public static class MyStack1 {
        //数据栈
        private Stack<Integer> stackData;
        //最小值栈
        private Stack<Integer> stackMin;

        //构造函数,初始化两个栈
        public MyStack1() {
            this.stackData = new Stack<Integer>();
            this.stackMin = new Stack<Integer>();
        }

        /**
         * push:数据栈直接放入  最小值栈如果为空则放入,否则比较新值和最小值栈顶,只有新值更小的时候才放入
         * @param newNum
         */
        public void push(int newNum) {
            if (this.stackMin.isEmpty()) {
                this.stackMin.push(newNum);
            } else if (newNum <= this.getmin()) {
                this.stackMin.push(newNum);
            }
            this.stackData.push(newNum);
        }

        /**
         * pop:数据栈取一个元素,还要和最小值栈比较,如果当前取出的数和最小值栈相等,则最小值栈pop,并且把数据返回
         * @return
         */
        public int pop() {
            if (this.stackData.isEmpty()) {
                throw new RuntimeException("Your stack is empty.");
            }
            int value = this.stackData.pop();
            if (value == this.getmin()) {
                this.stackMin.pop();
            }
            return value;
        }

        /**
         * 获取最小元素 :取最小值栈的栈顶
         * @return
         */
        public int getmin() {
            if (this.stackMin.isEmpty()) {
                throw new RuntimeException("Your stack is empty.");
            }
            return this.stackMin.peek();
        }
    }

第二种设计方案

public static class MyStack2 {
        //数据栈
        private Stack<Integer> stackData;
        //最小值栈
        private Stack<Integer> stackMin;

        //构造函数,初始化数据栈和最小值栈
        public MyStack2() {
            this.stackData = new Stack<Integer>();
            this.stackMin = new Stack<Integer>();
        }

        /**
         * 栈内添加元素:
         *     数据栈直接添加,最小值栈如果为空直接添加,如果新数据小于等于最小值栈的栈顶将新数据入栈,否则将最小值栈的栈顶重复压入栈中
         * @param newNum
         */
        public void push(int newNum) {
            if (this.stackMin.isEmpty()) {
                this.stackMin.push(newNum);
            } else if (newNum < this.getmin()) {
                this.stackMin.push(newNum);
            } else {
                int newMin = this.stackMin.peek();
                this.stackMin.push(newMin);
            }
            this.stackData.push(newNum);
        }

        /**
         * pop:不空的话数据栈和最小值栈同时pop
         * @return
         */
        public int pop() {
            if (this.stackData.isEmpty()) {
                throw new RuntimeException("Your stack is empty.");
            }
            this.stackMin.pop();
            return this.stackData.pop();
        }

        /**
         * 获取最小值:最小值栈的栈顶就是当前的最小值
         * @return
         */
        public int getmin() {
            if (this.stackMin.isEmpty()) {
                throw new RuntimeException("Your stack is empty.");
            }
            return this.stackMin.peek();
        }
    }

标签:元素,栈顶,最小值,算法,stackMin,getMin,stackData,设计,newNum
来源: https://www.cnblogs.com/dream-to-pku/p/12424996.html