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

连续子数组的最大和

时间:2014-09-11 09:32:31      阅读:149      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   ar   for   div   sp   log   

题目:输入一个整型数组,数组里有正数也有负数。数组中一个或连续的多个整数组成一个子数组。求所有字数组的和的最大值。要求时间复杂度为O(n).

public class Main {
    public static int getMaxSum(int[] array) throws Exception{
        
        if (array == null && array.length == 0) {
            throw new Exception() ;
        }
        
        int maxSum = array[0];
        int tempSum = maxSum;
        for (int i = 1; i < array.length; i++) {
            if (tempSum < 0) {
                tempSum = array[i];
            } else {
                tempSum += array[i];
            }
            
            if (tempSum >= maxSum) {
                maxSum = tempSum;
            }
        }
        return maxSum;
    }
    
    public static void main(String[] args) {
        int[] array = {-1, -2, -3, -10, -4, -5, -2, -5};
        try {
            System.out.println(getMaxSum(array));
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
}

 

连续子数组的最大和

标签:style   blog   color   io   ar   for   div   sp   log   

原文地址:http://www.cnblogs.com/wanghui390/p/3965708.html

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