-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlcs.cpp
71 lines (68 loc) · 916 Bytes
/
lcs.cpp
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
59
60
61
62
63
64
65
66
67
68
69
70
71
include<iostream>
#include<string.h>
using namespace std;
char c[50][50];
void print(char s[],int i,int j)
{
if(i==0||j==0)
{
return;
}
else
{
if(c[i][j]=='d')
{
print(s,i-1,j-1);
cout<<s[i-1];
}
else if(c[i][j]=='u')
{
print(s,i-1,j);
}
else
{
print(s,i,j-1);
}
}
}
int main()
{
char s1[101],s2[101];
cout<<"Enter 2 strings:\n";
cin>>s1>>s2;
int m=strlen(s1);
int n=strlen(s2);
int l[m+1][n+1];
for(int i=0;i<=m;i++)
{
l[i][0]=0;
}
for(int j=0;j<=n;j++)
{
l[0][j]=0;
}
for(int i=1;i<=m;i++)
{
for(int j=1;j<=n;j++)
{
if(s1[i-1]==s2[j-1])
{
l[i][j]=1+l[i-1][j-1];
c[i][j]='d';
}
else if(l[i-1][j]>=l[i][j-1])
{
l[i][j]=l[i-1][j];
c[i][j]='u';
}
else
{
l[i][j]=l[i][j-1];
c[i][j]='l';
}
}
}
cout<<"The longest common subsequence is ";
print(s1,m,n);
cout<<" of length "<<l[m][n]<<endl;
}