当前位置:   article > 正文

209. 长度最小的子数组

209. 长度最小的子数组

题目

给定一个含有 n 个正整数的数组和一个正整数 target 。

找出该数组中满足其总和大于等于 target 的长度最小的 连续子数组 [numsl, numsl+1, ..., numsr-1, numsr] ,并返回其长度如果不存在符合条件的子数组,返回 0 。

解法【滑动窗口】

  1. class Solution {
  2. public int minSubArrayLen(int target, int[] nums) {
  3. int left = 0;
  4. int sum = 0;
  5. int result = Integer.MAX_VALUE;
  6. for (int right = 0; right < nums.length; right++) {
  7. sum += nums[right];
  8. while (sum >= target) {
  9. result = Math.min(result, right - left + 1);
  10. sum -= nums[left++];
  11. }
  12. }
  13. return result == Integer.MAX_VALUE ? 0 : result;
  14. }
  15. }

将result设置为Integer.MAX_VALUE的目的是为了确保在遍历过程中能够正确地更新result的值。在最后返回结果时,如果result仍然保持为Integer.MAX_VALUE,则说明不存在满足条件的子数组,返回0;否则返回找到的最小子数组长度。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/很楠不爱3/article/detail/173433?site
推荐阅读
相关标签
  

闽ICP备14008679号