求最大子序列
摘要:C++:#include #include#include#includeusing namespace std;int maxSubSum(const vector &a){	int maxSum = 0;	int thisSum = 0;	for (int i = 0; i maxSum) ...
        阅读全文
        
            posted @ 2015-07-03 19:39
            posted @ 2015-07-03 19:39