第五天 单调栈结构

题目:给定一个不含有重复值的数组arr,找到每一个i位置左边和右边离i位置最近且值比arr[i]小的位置,返回所有位置相应的信息

先说下下,我没找到题,然后就只是写了代码,但是进阶版的题我找到了,明天跑那个!!!

浅浅说一下思路,其实时间复杂度高一点的都能写出来,但是 左神这个 时间复杂度很低,很秀

遍历数组, 把数组下标扔到栈里, 要求 栈底到栈顶 存储的数据(数组的数字) 的大小是由小到大的,

如果不是, 则popIndex = stack.pop(); 这个就能表示这个位置的数字的数组下标的位置了, 在解释一下(你看,当能走到这一步 说明,下一个数字,比你栈顶的数字小 ,这不就找到了,你要的这个数字 右边最小的下标吗? 所以 res[popIndex][1] = i)

然后 leftLess =  stack.isEmpty()? -1:stack.peek(); (这说明,当前数最右边小的数组小标是什么,空的话直接-1)

继续--当数组遍历完了 但是栈不空的时候 这说明了 剩下的数字 没有右边最小值 直接-1  (res[popIndex][1] = -1)

public class Text {

    public int[][] getNearLessNoRepeat(int[] arr){
        int[][] res = new int[arr.length][2];
        Stack<Integer> stack = new Stack<>();
        for (int i = 0; i < arr.length; i++) {
            while(!stack.isEmpty() && arr[stack.peek()] >arr[i]){
                int popIndex = stack.pop();
                int leftLess = stack.isEmpty()?-1:stack.peek();
                res[popIndex][0] = leftLess;
                res[popIndex][1] = i;
            }
            stack.push(i);
        }
        while (!stack.isEmpty()){
            int popIndex = stack.pop();
            int leftLess = stack.isEmpty()?-1:stack.peek();
            res[popIndex][0] = leftLess;
            res[popIndex][1] = -1;
        }
        return  res;
    }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值