209. 长度最小的子数组(中等)

Leetcode链接:209. 长度最小的子数组

题目描述

给定一个含有 n 个正整数的数组和一个正整数 target
找出该数组中满足其和 ≥ target 的长度最小的 连续子数组 [numsl, numsl+1, …, numsr-1, numsr],并返回其长度。如果不存在符合条件的子数组,返回 0

示例 1:

输入:target = 7, nums = [2,3,1,2,4,3]
输出:2
解释:子数组 [4,3] 是该条件下的长度最小的子数组。

示例 2:

输入:target = 4, nums = [1,4,4]
输出:1

示例 3:

输入:target = 11, nums = [1,1,1,1,1,1,1,1]
输出:0

提示:

1 <= target <= 109
1 <= nums.length <= 105
1 <= nums[i] <= 105

源码:

class Solution {
    //1.暴力解法
    public int minSubArrayLen2(int target, int[] nums) {
        int n = nums.length;
        
        int minLen = Integer.MAX_VALUE;

        for(int i = 0; i < n; i++){
            int sum = 0;
            for(int j = i; j < n; j ++){
                sum += nums[j];
                if(sum >= target){
                    minLen = Math.min(j - i + 1, minLen);
                }
            }
        }

        return minLen == Integer.MAX_VALUE ? 0 : minLen;
    }

    //2.滑动窗口
    public int minSubArrayLen(int target, int[] nums) {
        int n = nums.length;
        int start = 0;
        int end = 0;
        int minLen = Integer.MAX_VALUE;
        int sum = 0;
    
        while(end < n){
            sum += nums[end];
            while(sum >= target){
                minLen = Math.min(minLen, end - start + 1);
                sum -= nums[start];
                start ++;
            }
            end ++;
        }

        return minLen == Integer.MAX_VALUE ? 0 : minLen;
    }
}

你可能感兴趣的:(#,数组,leetcode,算法,java)