LeetCode Maximum subarray,最大子串问题

题目:

Find the contiguoussubarray within an array (containing at least one number) which has the largestsum.
For example, given the array [-2,1,-3,4,-1,2,1,-5,4], the contiguous subarray [4,-1,2,1] has thelargest sum = 6.


分析:

对于数组中的任意一个元素i,要求包含i的最大和子串,只需要把以i左邻元素结尾的最大字串、i、以i右邻元素开头的最大子串,这3个串连接起来即可。再简化一下,以某个元素结尾的最大子串和以某个元素开头的最大子串,实际是相互包含的,最大子串的开头元素和结尾元素都是确定的。只需要求得以每个元素结尾的最大子串,再比较它们,即可得到原数组的最大和子串。


代码:

int maxSubArray(int A[], int n) {
  int result = Integer.MIN_VALUE;
  int sum = 0;
  for (int i = 0; i < n; ++i) {
    if(sum>0){
      sum += A[i] };
    }else{
      sum = A[i];
    }     
    result = result>sum : result ? sum;
  }
    return result;
}



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值