字符串模式匹配中的BF算法與KMP算法

BF算法即暴力算法html #include<iostream> #include<cstring> using namespace std; // S[]: 要匹配的鏈 // T[]: 模式串 int BFsearch(int start, char S[], char T[]) { int slen = strlen(S); int tlen = strlen(T);
相關文章
相關標籤/搜索