KMP字串匹配演算法

2021-06-18 15:41:47 字數 1063 閱讀 4296

1、

kmp演算法是一種線性時間複雜的字串匹配演算法,它是對bf演算法(brute-force,最基本的字串匹配演算法的)改進。

對於給的的原始串s和模式串p,需要從字串s中找到字串p出現的位置的索引。

bf演算法的時間複雜度o(strlen(s) * strlen(t)),空間複雜度o(1)。

kmp演算法的時間複雜度o(strlen(s) + strlen(t)),空間複雜度o(strlen(t))。

2、 乙個kmp演算法,說白了就是構造最大字尾長度陣列。

kmp演算法與bf演算法的區別在於,字串失配時的處理。

kmp利用之前已經匹配好的位置,將字串的移動次數降低,移動的步子增大。

3、 #include #include using namespace std;

int kmp_find(const string& target,const string& pattern)

if(pattern[i] == pattern[index+1])

else

overlay_function[i] = -1;

} //match algrithm start

int target_index=0;

int pattern_index=0;

while(target_index < target_length&& pattern_index < pattern_length)

else if(pattern_index == 0)

else

} delete overlay_function;

if(pattern_index == pattern_length)

return target_index - pattern_length;

else

return -1; }

void main()

{ string source = "asdsdadwridisdaabaabcabacsdshdsads";

string pattern = "abaabcabac";

cout<

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的第乙個字元,依次比較下去,直到得出最後的匹配...