-
Notifications
You must be signed in to change notification settings - Fork 1
/
KMP.py
41 lines (37 loc) · 846 Bytes
/
KMP.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
def KMP(pat, txt):
M = len(pat)
N = len(txt)
lps = [0]*M
j = 0
findLps(pat, M, lps)
i = 0
while i < N:
if pat[j] == txt[i]:
i += 1
j += 1
if j == M:
print("Found pattern at index " + str(i-j) )
j = lps[j-1]
elif i < N and pat[j] != txt[i]:
if j != 0:
j = lps[j-1]
else:
i += 1
def findLps(pat, M, lps):
j = 0
lps[0]
i = 1
while i < M:
if pat[i]== pat[j]:
j += 1
lps[i] = j
i += 1
else:
if j != 0:
j = lps[j-1]
else:
lps[i] = 0
i += 1
txt = "ABABDABACDABABCABA"
pat = "ABABCABA"
KMP(pat, txt)