C++求最大子序列問題

 //最大子序列求解問題,並加入了一個計時器,輸出的是最大子序列和,最大子序列的起始下表 #include<iostream> #include<vector> #include<time.h> using namespace std; int *maxSubSum(const vector<int> &a) {  int* ans = new int[2];  int maxSum = 0,
相關文章
相關標籤/搜索