-
Notifications
You must be signed in to change notification settings - Fork 163
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Longest Palindromic Sub-sequence #235
Open
mitali004
wants to merge
5
commits into
codeIIEST:master
Choose a base branch
from
mitali004:Palindromic_branch
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+61
−0
Open
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
48 changes: 48 additions & 0 deletions
48
Competitive Coding/Dynamic Programming/Longest Palindromic Sub-sequence/lps.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
#include<stdio.h> | ||
#include<string.h> | ||
#define MAXLEN 100 | ||
// A utility function to get max of two integers | ||
int max (int x, int y) { return (x > y)? x : y; } | ||
|
||
// Returns the length of the longest palindromic subsequence in seq | ||
int lps(char *str) | ||
{ | ||
int n = strlen(str); | ||
int i, j, len; | ||
int mat[n][n]; // Create a table to store results of subproblems | ||
|
||
|
||
// Strings of length 1 are palindrome of lentgh 1 | ||
for (i = 0; i < n; i++) | ||
mat[i][i] = 1; | ||
|
||
/* Build the table. Note that the lower diagonal values of table are | ||
useless and not filled in the process. len is length of | ||
substring*/ | ||
for (len=2; len<=n; len++) | ||
{ | ||
for (i=0; i<n-len+1; i++) | ||
{ | ||
j = i+len-1; | ||
if (str[i] == str[j] && len == 2) | ||
mat[i][j] = 2; | ||
else if (str[i] == str[j]) | ||
mat[i][j] = mat[i+1][j-1] + 2; | ||
else | ||
mat[i][j] = max(mat[i][j-1], mat[i+1][j]); | ||
} | ||
} | ||
|
||
return mat[0][n-1]; | ||
} | ||
|
||
/* main */ | ||
int main() | ||
{ | ||
printf("Enter your string\n"); | ||
char str[MAXLEN]; | ||
scanf("%99s",str); | ||
printf ("The lnegth of the Longest Palindromic Sub-sequence is %d", lps(str)); | ||
getchar(); | ||
return 0; | ||
} |
13 changes: 13 additions & 0 deletions
13
...itive Coding/Dynamic Programming/Longest Palindromic Sub-sequence/readme_lps.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
## Longest Common Subsequence | ||
In order to solve this problem using Dynamic Programming, we create a 2-D matrix called mat[n][n], where 'n' is the length of the given string. | ||
Any entry [i][j] in the matrix represents the length of the longest palindromic sub-sequence from 'i'th charecter of the string to the 'j'th. | ||
As the string is always considereed from left to right i<=j always. Hence the lower triangle of the matrix is of no use. | ||
|
||
### Filling of the matrix | ||
Every single charecter contributes to a palindromic string of length 1 starting and ending at itself, therefore we fill the diagonal of the | ||
matrix with 1 for every [i][i] entry. <br/><br/> | ||
Let str[0..n-1] be the input sequence of length n, then mat[0][n-1] will be the length of the longest palindromic subsequence.<br/> | ||
For every other entry:<br/> | ||
If last and first characters of str are same, then mat[i][j] = mat[i+1][j-1] + 2, as it considers [2(for the first and the last chaar)] + | ||
[longest palindromic subsequence between these 2 chars].<br/> | ||
Else mat[i][j] = max(mat[i][j-1], mat[i+1][j]). | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. similarly add ` before and after |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
make like this
[i][i]