更加精简的算法 #include<iostream> #include<vector> #include<algorithm> #include<random> #include<math.h> using namespace std; int KMP(string S, string T){ // 求解 next 数组 // 当前位置 前一个的 next 值 int m = S.size(), n = T.size(), cur = 0, pre = -1; vector<int> ...