码迷,mamicode.com
首页 > 编程语言 > 详细

Maximum Subarray (JAVA)

时间:2014-10-09 00:23:07      阅读:218      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   ar   java   for   sp   div   c   

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.

 

 1  public static int maxSubArray(int[] A) 
 2      {
 3             int max=A[0];
 4             for(int i=0;i<A.length;i++)
 5             {
 6                 int sum=0;
 7                 for(int j=i;j<A.length;j++)
 8                 {
 9                     sum+=A[j];
10                     if(sum>max)12                         max=sum;15                 }
16             }
17                 
18          return max;
19       }

 

 

O(n):

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

 

Maximum Subarray (JAVA)

标签:style   blog   color   ar   java   for   sp   div   c   

原文地址:http://www.cnblogs.com/sweetculiji/p/4011763.html

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