找出栈中的最小值时间复杂度为O(1)

import java.util.Stack;

/**
 * 〈一句话功能简述〉<br>
 * 〈设计一个特殊栈,实现返回最小值push,pop,getmin时间复杂度都为O(1)〉
 *
 * @author Administrator
 * @create 2019/6/2
 * @since 1.0.0
 */
public class GetStackMin {
    public static class StackArr1 {
        private Stack<Integer> stackData;
        private Stack<Integer> stackMin;

        public StackArr1() {
            this.stackData = new Stack<Integer>();
            this.stackMin = new Stack<Integer>();
        }

        public void Push(int newNum) {
            if (this.stackMin.isEmpty()) {
                this.stackMin.push(newNum);
            } else if (newNum < GetMin()) {
                this.stackMin.push(newNum);
            } else {
                newNum = GetMin();
                this.stackMin.push(newNum);
            }
            this.stackData.push(newNum);
        }

        public int Pop() {
            if (this.stackData.isEmpty()) {//min栈是跟随Data栈往外弹,所以这里判定data栈是否为空
                throw new RuntimeException("the stack is empty");
            }
            this.stackMin.pop();
            return this.stackData.pop();

        }

        public Integer GetMin() {
            if (this.stackMin.isEmpty()) {
                throw new RuntimeException("the stack is empty");
            }
            return this.stackMin.peek();
        }
    }

    public static class StackArr2 {
        private Stack<Integer> stackData;
        private Stack<Integer> stackMin;

        public StackArr2() {
            this.stackData = new Stack<Integer>();
            this.stackMin = new Stack<Integer>();
        }

        public void Push(int newNum) {
            if (this.stackMin.isEmpty()) {
                this.stackMin.push(newNum);
            } else if (newNum <= GetMin()) {
                this.stackMin.push(newNum);
            }
            this.stackData.push(newNum);
        }

        public int Pop() {
            if (this.stackData.isEmpty()) {//min栈是跟随Data栈往外弹,所以这里判定data栈是否为空
                throw new RuntimeException("the stack is empty");
            }
            int res = this.stackData.pop();
            if (res == GetMin()) {//这与第一种方法不同,Min栈只弹与Data栈相等的数
                this.stackMin.pop();
            }
            return res;

        }

        public Integer GetMin() {
            if (this.stackMin.isEmpty()) {
                throw new RuntimeException("the stack is empty");
            }
            return this.stackMin.peek();
        }
    }
    public static void main(String[] args) {
        StackArr1 stack1 = new StackArr1();
        //stack1.StackArr1();
        stack1.Push(3);
        System.out.println(stack1.GetMin());
        stack1.Push(4);
        System.out.println(stack1.GetMin());
        stack1.Push(1);
        System.out.println(stack1.GetMin());
        System.out.println(stack1.Pop());
        System.out.println(stack1.GetMin());

        System.out.println("=============");

        StackArr2 stack2 = new StackArr2();
        //stack2.StackArr2();
        stack2.Push(3);
        System.out.println(stack2.GetMin());
        stack2.Push(4);
        System.out.println(stack2.GetMin());
        stack2.Push(1);
        System.out.println(stack2.GetMin());
        System.out.println(stack2.Pop());
        System.out.println(stack2.GetMin());
    }

}

代码没什么可说的,只是注意,JAVA是有构造函数一说的,用于给对象初始化。

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

guangod

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值