forked from DPrinceKumar/HacktoberFest2020-1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Knuth–Morris–Pratt algorithm.py
58 lines (44 loc) · 1.07 KB
/
Knuth–Morris–Pratt algorithm.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
def KMPSearch(pattern, text):
M = len(pattern)
N = len(text)
lps = [0]*M
j = 0
compute(pattern, M, lps)
i = 0
while i < N:
if pattern[j] == text[i]:
i += 1
j += 1
if j == M:
print ("Found pattern at index " + str(i-j))
j = lps[j-1]
elif i < N and pattern[j] != text[i]:
if j != 0:
j = lps[j-1]
else:
i += 1
def compute(pattern, M, lps):
len = 0
lps[0]
i = 1
while i < M:
if pattern[i]== pattern[len]:
len += 1
lps[i] = len
i += 1
else:
if len != 0:
len = lps[len-1]
else:
lps[i] = 0
i += 1
for k in range(0,len(lps)):
print(k,end=" ")
print()
for i in lps:
print(i,end=" ")
print()
# Main Program
text = "ABCDABCDACBDBDA"
pattern = "AB"
KMPSearch(pattern, text)