题目:给定一个不含有重复值的数组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;
}
}