Created
July 21, 2021 01:05
-
-
Save nam157/8202dc62aa7293c63327dd61bb721fcf to your computer and use it in GitHub Desktop.
This file contains 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 characters
def KMPSearch(pat, txt): | |
S = pat +"$"+ txt | |
s = _computeLPSArray(S) | |
print(s) | |
result = [] | |
for i in range(len(pat)+1,len(txt)-1): | |
if s[i] == len(pat): | |
result.append(i - 2*len(pat)) | |
return result |
This file contains 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 characters
def _computeLPSArray(pat): | |
M = len(pat) | |
lps = [0] * M | |
border = 0 | |
for i in range(1,M): | |
#Kiểm tra ký tự hiện tại pat[i] | |
#so sánh nó với ký tự sau khi đường viên hiện tại kết thúc | |
while border > 0 and (pat[i] != pat[border]): | |
#Lấy đường viền hiện tại dài nhất của đường u hiện tại | |
border = lps[border - 1] | |
#So sánh ký tự hiện tại và ký tự đường viên | |
if pat[border] == pat[i]: | |
#cộng giá trị đường viên | |
border = border + 1 | |
#khác thì đường viên bằng 0 | |
else: | |
border = 0 | |
lps[i] = border | |
return lps |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment