给定一个整数数组,找到一个具有最大和的子数组,返回其最大和。
样例
给出数组[−2,2,−3,4,−1,2,1,−5,3],符合要求的子数组为[4,−1,2,1],其最大和为6
class Solution {
public:
/**
* @param nums: A list of integers
* @return: A integer indicate the sum of max subarray
*/
int maxSubArray(vector<int> nums) {
// write your code here
int i, j;
int len = nums.size();
int sum = 0, max;
if (nums[0] < 0) max = nums[0];
else max = 0;
for (i = 0; i < len; ++i){
sum += nums[i];
if (sum > 0){
if (sum > max) max = sum;
}
else {
sum = 0;
}
}
return max;
}
};
版权声明:本文为mkhuangmk原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。