kmp算法的next函数及其修正值怎么求
收起
知与谁同
2018-07-20 17:18:48
3038
0
1
条回答
写回答
取消
提交回答
-
#include #include using namespace std;class KMP{public:// 构造函数KMP(string pattern, string origin):pat(pattern), ori(origin) {next = new int[pattern.size() + 1];next[0] = -1;calcuNext(); // 计算next数组count = 0;}// 计算next...
2019-07-17 22:56:02