-
Notifications
You must be signed in to change notification settings - Fork 213
Expand file tree
/
Copy pathpal.cpp
More file actions
49 lines (47 loc) · 906 Bytes
/
Copy pathpal.cpp
File metadata and controls
49 lines (47 loc) · 906 Bytes
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
/*Longest Palindromic Subsequence
Given a sequence, find the length of the longest palindromic subsequence in it.
Example :
Input:"bbbab"
Output:4*/
#include<bits/stdc++.h>
#include<string.h>
#include<string>
using namespace std;
int t[100][1000];
int LCS(string X,string Y, int m,int n)
{
for (int i = 0; i < m+1; ++i)
{
for (int j = 0; j < n+1; ++j)
{
if(i==0||j==0)
t[i][j]=0;
}
}
for (int i = 1; i < m+1; ++i)
{
for(int j = 1; j < n+1; ++j)
{
if(X[i-1]==Y[j-1])
{
t[i][j]=1+t[i-1][j-1];
}
else
{
t[i][j]=max(t[i-1][j],t[i][j-1]);
}
}
}
return t[m][n];
}
int main()
{
string X="bbbab";
string Y=X;
reverse(Y.begin(), Y.end());
int m=X.length();
int n = Y.length();
memset(t,-1,sizeof(t));
cout<<LCS(X,Y,m,n)<<endl;
return 0;
}