forked from keon/algorithms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlongest_common_subsequence.py
46 lines (35 loc) · 1.18 KB
/
longest_common_subsequence.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
"""
A subsequence is a sequence that can be derived from another
sequence by deleting some or no elements without changing the
order of the remaining elements.
For example, 'abd' is a subsequence of 'abcd' whereas 'adc' is not
Given 2 strings containing lowercase english alphabets, find the length
of the Longest Common Subsequence (L.C.S.).
Example:
Input: 'abcdgh'
'aedfhr'
Output: 3
Explanation: The longest subsequence common to both the string is "adh"
Time Complexity : O(M*N)
Space Complexity : O(M*N), where M and N are the lengths of the 1st and 2nd string
respectively.
"""
def longest_common_subsequence(s_1, s_2):
"""
:param s1: string
:param s2: string
:return: int
"""
m = len(s_1)
n = len(s_2)
mat = [[0] * (n + 1) for i in range(m + 1)]
# mat[i][j] : contains length of LCS of s_1[0..i-1] and s_2[0..j-1]
for i in range(m + 1):
for j in range(n + 1):
if i == 0 or j == 0:
mat[i][j] = 0
elif s_1[i - 1] == s_2[j - 1]:
mat[i][j] = mat[i - 1][j - 1] + 1
else:
mat[i][j] = max(mat[i - 1][j], mat[i][j - 1])
return mat[m][n]