-
Notifications
You must be signed in to change notification settings - Fork 153
/
Copy pathlcs.py
51 lines (37 loc) · 1.15 KB
/
lcs.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
"""
@author : vishalshirke7
@date : 03/01/2019
"""
def lcs(str1, str2):
m, n = len(str1), len(str2)
L = [[0 for y in range(n + 1)] for x in range(m + 1)]
for i in range(m + 1):
for j in range(n + 1):
if i == 0 or j == 0:
L[i][j] = 0
elif str1[i - 1] == str2[j - 1]:
L[i][j] = L[i - 1][j - 1] + 1
else:
L[i][j] = max(L[i - 1][j], L[i][j - 1])
index = L[m][n]
# Create a character array to store the lcs string
lcs_str = [""] * (index + 1)
lcs_str[index] = ""
i = m
j = n
while i > 0 and j > 0:
# If current character in X[] and Y are same, then
# current character is part of LCS
if str1[i - 1] == str2[j - 1]:
lcs_str[index - 1] = str1[i - 1]
i -= 1
j -= 1
index -= 1
# If not same, then find the larger of two and
# go in the direction of larger value
elif L[i - 1][j] > L[i][j - 1]:
i -= 1
else:
j -= 1
print("LCS of " + str1 + " and " + str2 + " is -" + "".join(lcs_str))
lcs(*(input().split()))