KMP算法的總結

(1).KMP的作用      用於字符串匹配,用於查找一個字符串是否是另一個字符串的子串,可以返回出現的次數以及出現的位置。 (2).KMP的模板 #include <stdio.h> #include <string.h> #include <stdlib.h> using namespace std; char s1[110]; char s2[110]; int Next[110]; vo
相關文章
相關標籤/搜索