美文网首页算法算法浙大数据结构公开课
01 - 复杂度 1 最大子列和问题 (20 分)

01 - 复杂度 1 最大子列和问题 (20 分)

作者: 戏之地 | 来源:发表于2016-05-08 17:33 被阅读82次

<pre><small><small>
// 在线方法求子项的最大和
int maxSub(int a[],int N){
int maxSum,thisSum; int i;
maxSum=thisSum=0;
for(i=0;i<N;i++){
thisSum+=a[i];
if(thisSum>maxSum){
maxSum=thisSum;
}else if(thisSum < 0){
thisSum=0;
}
}
return maxSum;
}
</small></small></pre>

相关文章

网友评论

    本文标题:01 - 复杂度 1 最大子列和问题 (20 分)

    本文链接:https://www.haomeiwen.com/subject/websrttx.html