python實現 最長子序列和

一、O(n^2)python def maxSubSum(*a): #a is a List max=a[0] for i,value in enumerate(a): this_max=0 for j in a[i:]: this_max+=j if this_max>max:
相關文章
相關標籤/搜索