题目
给定一个含有 n 个正整数的数组和一个正整数 target 。
找出该数组中满足其和 ≥ target 的长度最小的 连续子数组 [numsl, numsl+1, …, numsr-1, numsr] ,并返回其长度。如果不存在符合条件的子数组,返回 0 。
代码实现
双指针
public int minSubArrayLen(int target, int[] nums) {
int res = Integer.MAX_VALUE;
int left = 0;
int total = 0;
for (int right = 0; right < nums.length; right++) {
total += nums[right];
if (total >= target){
while (left <= right && total - nums[left] >= target){
total -= nums[left];
left++;
}
int len = right-left + 1;
res = res > len ? len : res;
}
}
return res == Integer.MAX_VALUE ? 0 : res;
}