码迷,mamicode.com
首页 > 其他好文 > 详细

LeetCode OJ平台上Maximum Subarray题目O(n)复杂度解决方案

时间:2014-06-14 15:08:00      阅读:224      评论:0      收藏:0      [点我收藏+]

标签:算法   java   

原始题目如下,意为寻找数组和最大的子串,返回这个最大和即可。

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^2).

在木易先森的指导下,有一个极其简单的O(n)复杂度的方法:

-    先找出数组max值,如果max小于0 ,啥也别说了,直接返回max.

-    设置辅助变量currentmax=0;数组从头至尾扫描一遍

     -    如果currentmax + A[i] <= 0,意味着这个子串对于我们寻找最大和是没有任何帮助的,此时,直接再置currentmax = 0

     -    如果currentmax + A[i] > 0,意味着这个子串的和是有意义的,将这个和跟max比较,时刻保持max的值是当前最理想的最大值

-    最后返回max即可

源代码如下:

public class Solution {
    public static int maxSubArray(int[] A) {
        if(A.length == 0)
            return 0;
        int max = A[0];
        for(int i = 0; i < A.length; i ++)
            if(A[i] > max)
                max = A[i];
        if(max <= 0)
            return max;
        int currentmax = 0;
        for(int i = 0;i < A.length; i ++){
        	currentmax += A[i];
        	if(currentmax <= 0){
        		currentmax = 0;
        		continue;
        		}
        	else{
        		if(currentmax > max)
        			max = currentmax;
        	}
        	}
        return max;
        }
}


LeetCode OJ平台上Maximum Subarray题目O(n)复杂度解决方案,布布扣,bubuko.com

LeetCode OJ平台上Maximum Subarray题目O(n)复杂度解决方案

标签:算法   java   

原文地址:http://blog.csdn.net/sophie2805/article/details/30726163

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!