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

leetCode 53: Maximum Subarray

时间:2017-04-01 21:13:14      阅读:166      评论:0      收藏:0      [点我收藏+]

标签:nbsp   代码   leetcode   sub   mss   最大连续   within   with   tco   

题目如下:

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.

 

原型最大连续和问题

 

《算法竞赛入门经典》模版:

S[0] = 0;
for (i = 1; i <= n; i++)  S[i] = S[i-1] + A[i];
for (i = 1; i <= n; i++) 
     for (j = i; j <= n; j++) 
          best = max(best, S[j] - S[i-1]);

 

 

本题代码:

int maxSubArray(int* nums, int numsSize) {
    int *S;
    S = (int*)malloc((numsSize+5) * sizeof(int) );
    int i,j;
    int best = nums[0];
    S[0] = 0;
    
    for (i=1; i<=numsSize; i++) {
        S[i] = S[i-1] + nums[i-1];
    }
    for (i=1; i<=numsSize; i++) {
        for (j=i; j<=numsSize; j++) {
            best = best > (S[j]-S[i-1]) ? best : (S[j]-S[i-1]);
        }
    }
    free(S);
    return best;
}

 

leetCode 53: Maximum Subarray

标签:nbsp   代码   leetcode   sub   mss   最大连续   within   with   tco   

原文地址:http://www.cnblogs.com/pinganzi/p/6657453.html

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