按照上文的思路,自己寫了乙個kmp演算法來實現字串匹配,可以判斷短字串是否匹配長字串以及第一次匹配成功時長字串的初始位置。
class kmpclass
set}
string shortstring;
public string shortstring
set
}int next;
public kmpclass()
public void getnext()
}if (flag == true)
}next[len] = maxlen;
len++;}}
public void ismatchornot()
getnext();
int shortposition=0;
int longposition=0;
int shortlen = shortstring.length;
int longlen = longstring.length;
while (true)
if (longposition==longlen)
if (shortstring[shortposition]==longstring[longposition])
else}}
}
KMP演算法 字串匹配
kmp演算法基本思想 我們在用常規的思想做 字串匹配時候是 如 對如 字元如果 t abab 用p ba 去匹配,常規思路是 看 t 第乙個元素 a 是否 和p 的乙個 b 匹配 匹配的話 檢視各自的第二個元素,不匹配 則將 t 串的 第二個元素開始 和 p 的第乙個匹配,如此 一步一步 的後移 來...
KMP字串匹配演算法
kmp核心思想 計算模式串的next陣列,主串的索引在比較的過程中不回朔 ifndef kmp h define kmp h class kmp endif include kmp.h include include include using namespace std int kmp calcu...
KMP字串匹配演算法
在介紹kmp演算法之前,先介紹一下bf演算法。一.bf演算法 bf演算法是普通的模式匹配演算法,bf演算法的思想就是將目標串s的第乙個字元與模式串p的第乙個字元進行匹配,若相等,則繼續比較s的第二個字元和p的第二個字元 若不相等,則比較s的第二個字元和p的第乙個字元,依次比較下去,直到得出最後的匹配...