- 博客(3)
- 资源 (2)
- 问答 (1)
- 收藏
- 关注
转载 KMP模式匹配算法
计算字符串特征向量(优化版)int *findNext(string P){ int i = 0; int k = -1; int m = P.length();//m为字符串P的长度 assert(m > 0);//若m=0,退出 int *next = new int[m];//动态存储区开辟整数数组 assert(next != 0);//若开辟失败,退出 next[0]
2015-11-12 09:27:16 312
转载 线性规划
最大子数组#include#include #includeusing namespace std;int maxSubset(int a[], int low, int high){ int temp = 0, sum = INT_MIN; for (int i = low; i <= high; i++) { temp += a[i]; if (temp > su
2015-11-10 08:59:49 518
最大子数组的相关问题
2016-03-30
TA创建的收藏夹 TA关注的收藏夹
TA关注的人