Last active
December 5, 2016 03:21
-
-
Save simsicon/a78698858bea3e7e28310378682bd30a to your computer and use it in GitHub Desktop.
Revisions
-
simsicon created this gist
Aug 29, 2016 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,19 @@ def kmp(text, pattern): partial = [0] for i in range(1, len(pattern)): j = partial[i - 1] while j > 0 and pattern[j] != pattern[i]: j = partial[j - 1] partial.append(j + 1 if pattern[j] == pattern[i] else j) ret = [] for i in range(len(text)): while j > 0 and text[i] != pattern[j]: j = partial[j - 1] if text[i] == pattern[j]: j += 1 if j == len(pattern): ret.append(i - (j - 1)) j = 0 return ret