- 滑动窗口最大值
给你一个整数数组 nums,有一个大小为 k 的滑动窗口从数组的最左侧移动到数组的最右侧。你只可以看到在滑动窗口内的 k 个数字。滑动窗口每次只向右移动一位。
返回 滑动窗口中的最大值 。
示例 1:
输入:nums = [1,3,-1,-3,5,3,6,7], k = 3
输出:[3,3,5,5,6,7]
解释:
滑动窗口的位置 最大值
[1 3 -1] -3 5 3 6 7 3
1 [3 -1 -3] 5 3 6 7 3
1 3 [-1 -3 5] 3 6 7 5
1 3 -1 [-3 5 3] 6 7 5
1 3 -1 -3 [5 3 6] 7 6
1 3 -1 -3 5 [3 6 7] 7
示例 2:
输入:nums = [1], k = 1
输出:[1]
提示:
1 <= nums.length <= 105
-104 <= nums[i] <= 104
1 <= k <= nums.length
public int[] maxSlidingWindow(int[] nums, int k) {int len = nums.length;int left = 0,right =k-1;//窗口起点终点坐标int preMaxIdx = -1;//上一个最大值的位置int max = Integer.MIN_VALUE;int[] res = new int[len-k+1];while(right<len){if(left<=preMaxIdx){//上一轮的最大值在窗口中if(nums[right]>=max){//新加入的终点与最大值比较preMaxIdx = right;max = nums[right];}}else if(nums[right]>=max-1){//最大值已出窗口,需要寻找新的最大值preMaxIdx = right;max = nums[right];}else if(nums[left]>=max-1){//检查起点终点是否可能是次大值preMaxIdx = left;max = nums[left];}else{//从窗口头到尾寻找最大值max = Integer.MIN_VALUE;for(int i= left;i<=right;i++){if(nums[i]>=max){max = nums[i];preMaxIdx = i;}}}res[left] = max;left++;right++;}return res;}