Skip to content

Instantly share code, notes, and snippets.

@thasan3003
Last active December 2, 2018 13:03
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thasan3003/2bf2aaa341db8138c4da59555f926401 to your computer and use it in GitHub Desktop.
Save thasan3003/2bf2aaa341db8138c4da59555f926401 to your computer and use it in GitHub Desktop.
Longest Common Subsequence in C++
/*
Md Tahmid Hasan
CSE, BSMRSTU
tahmidhasan3003
*/
#include<bits/stdc++.h>
#define fo freopen("inlcs.txt","r",stdin)
#define N cout<<endl
#define MAX 100
#define inf 999999
using namespace std;
int lcs[MAX][MAX],n;
char dir[MAX][MAX];
string s1,s2;
void LCS(void)
{
memset(dir,'A',sizeof(dir));
n=0;
for(int i=0;i<=s2.size();i++)
{
for(int j=0;j<=s1.size();j++)
{
if(i==0 || j==0)
lcs[i][j]=0;
else if(s1[j-1]==s2[i-1])
{
lcs[i][j]=lcs[i-1][j-1]+1;
dir[i][j]='C';
n=max(n,lcs[i][j]);
}
else
{
if(lcs[i-1][j]>lcs[i][j-1])
{
lcs[i][j]=lcs[i-1][j];
dir[i][j]='U';
}
else if(lcs[i-1][j]<lcs[i][j-1])
{
lcs[i][j]=lcs[i][j-1];
dir[i][j]='L';
}
else
{
lcs[i][j]=lcs[i-1][j];
dir[i][j]='U';
}
}
}
}
}
void display(int j,int i)
{
if(dir[i][j]=='A')
return;
else if(dir[i][j]=='L')
{
display(j-1,i);
}
else if(dir[i][j]=='U')
{
display(j,i-1);
}
else if(dir[i][j]=='C')
{
display(j-1,i-1);
printf("%c",s1[j-1]);
}
}
int main()
{
//fo;
cout<<"Input text 1:";N;
cin>>s1;
cout<<"Input text 2:";N;
cin>>s2;
cout<<"Text 1: "<<s1;N;
cout<<"Text 2: "<<s2;N;
LCS();
cout<<"The length of longest common subsequence is: "<<n; N;
cout<<"and the longest common subsequence is: ";
display(s1.size(),s2.size());
N;
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment