最大子数组 - Java

给定一个整数数组,找到一个具有最大和的子数组,返回其最大和。

给出数组[−2,2,−3,4,−1,2,1,−5,3],符合要求的子数组为[4,−1,2,1],其最大和为6。

要求时间复杂度为O(n)。

public class Solution {

    /**
     * @param nums: A list of integers
     * @return: A integer indicate the sum of max subarray
     */
    public int maxSubArray(int[] nums) {
        // write your code here
        int max = nums[0];
        int temp = 0;
        int size = nums.length;
        for(int i = 0;i<size;i++){
            temp = temp+ nums[i];
            if (temp<0){
                temp=0;
            }else{
                if(temp>max){
                    max = temp;
                }
            }
        }
        return max;
    }
}

猜你喜欢

转载自blog.csdn.net/qq_39229914/article/details/80513584