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

最大连续子序列和

时间:2017-09-08 23:02:29      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:max   span   turn   for   int   cto   ret   ons   运行时   

下面介绍一个线性的算法,这个算法是许多聪明算法的典型:运行时间是明显的,但是正确性则很不明显(不容易理解)。

//线性的算法O(N) 

long maxSubSum4(const vector<int>& a) 

       long maxSum = 0, thisSum = 0; 

       for (int j = 0; j < a.size(); j++) 

       

              thisSum += a[j]; 

              if (thisSum > maxSum) 

                     maxSum = thisSum; 

              else if (thisSum < 0) 

                     thisSum = 0; 

       

       return maxSum; 

}

最大连续子序列和

标签:max   span   turn   for   int   cto   ret   ons   运行时   

原文地址:http://www.cnblogs.com/zhsbk/p/7496608.html

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