Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include<stdio.h>
- #include<string.h>
- int i,j,m,n,c[10][10];
- char x[10],y[10],b[10][10];
- void print(int i, int j)
- {
- if(i==0 || j==0)
- return;
- if(b[i][j]=='c')
- {
- print(i-1,j-1);
- printf("%c",x[i-1]);
- }
- else if(b[i][j]=='u')
- print(i-1,j);
- else
- print(i,j-1);
- }
- void LCS()
- {
- m=strlen(x);
- n=strlen(y);
- for(i=0; i<=m; i++)
- c[i][0]=0;
- for(i=0; i<=n; i++)
- c[0][i]=0;
- for(i=1; i<=m; i++)
- for(j=1; j<=n; j++)
- {
- if(x[i-1]==y[j-1])
- {
- c[i][j]=c[i-1][j-1]+1;
- b[i][j]='c';
- }
- else if(c[i-1][j]>=c[i][j-1])
- {
- c[i][j]=c[i-1][j];
- b[i][j]='u';
- }
- else
- {
- c[i][j]=c[i][j-1];
- b[i][j]='l';
- }
- }
- }
- int main()
- {
- printf("Enter 1st sequence:");
- scanf("%s",x);
- printf("Enter 2nd sequence:");
- scanf("%s",y);
- printf("\nThe Longest Common Subsequence is ");
- LCS();
- print(m,n);
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment