美文网首页ACM题库~
LeetCode 53. Maximum Subarray

LeetCode 53. Maximum Subarray

作者: 关玮琳linSir | 来源:发表于2017-09-19 11:18 被阅读49次

Find the contiguous subarray within an array (containing at least one number) which has the largest sum.

For example, given the array [-2,1,-3,4,-1,2,1,-5,4],
the contiguous subarray [4,-1,2,1] has the largest sum = 6.

题意:找到最大公共数组

目前时间复杂度O(n),这个可以降低到log(n),日后再优化:

java代码:

public int maxSubArray(int[] nums) {
        int result = nums[0];
        int max = nums[0];

        for (int i = 1; i < nums.length; i++) {
            if (max + nums[i] < nums[i]) max = nums[i];
            else max = max + nums[i];
            if (max > result) result = max;
        }
        return result;
    }

相关文章

网友评论

    本文标题:LeetCode 53. Maximum Subarray

    本文链接:https://www.haomeiwen.com/subject/birwsxtx.html