Minimum number of deletions to make a string palindrome | Set 2
Given a string A, compute the minimum number of characters you need to delete to make resulting string a palindrome.
Examples:
Input : baca Output : 1 Input : geek Output : 2
We have discussed one approach in below post.
Minimum number of deletions to make a string palindrome
Below approach will use modified Levenshtein distance. We consider modified Levensthein (considering only deletions) both original string and its reverse.
// CPP program to find minimum deletions to make // palindrome. #include <bits/stdc++.h> using namespace std; int getLevenstein(string const & input) { // Find reverse of input string string revInput(input.rbegin(), input.rend()); // Create a DP table for storing edit distance // of string and reverse. int n = input.size(); vector<vector< int > > dp(n + 1, vector< int >(n + 1, -1)); for ( int i = 0; i <= n; ++i) { dp[0][i] = i; dp[i][0] = i; } // Find edit distance between input and revInput // considering only delete operation. for ( int i = 1; i <= n; ++i) { for ( int j = 1; j <= n; ++j) { if (input[i - 1] == revInput[j - 1]) dp[i][j] = dp[i - 1][j - 1]; else dp[i][j] = 1 + min({ dp[i - 1][j], dp[i][j - 1] }); } } /*Go from bottom left to top right and find the minimum*/ int res = numeric_limits< int >::max(); for ( int i = n, j = 0; i >= 0; --i, ++j) { res = min(res, dp[i][j]); if (i < n) res = min(res, dp[i + 1][j]); if (i > 0) res = min(res, dp[i - 1][j]); } return res; } // Driver code int main() { string input( "myfirstgeekarticle" ); cout << getLevenstein(input); return 0; } |
Output:
12
Time complexity: O()
Space complexity: O()
where is length of string
Why is it working?
To understand it we need to start from the very beginning of how we create dp[][], for example for word “geek”, it initially looks like this:
Both 1st row and 1st column are filled with number 1..4 as this is the number of modifications needed to create empty string, i.e:
[0][1] == 1, to create empty string from letter ‘g’ remove this one letter
[0][2] == 2, to create empty string from letters “ge”, remove both those letters, etc.
The same story for first column:
[1][0] == 1, to create empty string from letter ‘k’ remove this one letter
[2][0] == 2, to create empty string from letters “ke”, remove both those letters, etc.
Now, we are using dynamic programming approach to get the minimum number of modifications to get every other substring to become second substring, and at the end out dp[][] looks like this:
So for example minimum number of modifications to get substring ‘gee’ from ‘kee’ is 2. So far so good but this algorithm is doing two things, it is both inserting and deleting characters, and we are only interested in number of removals. So let’s one more time take a look at our resulting array, for example at entry [4][1], this entry states:
[4][1] – to make string ‘g’ from string “keeg” we need to perform 3 modifications(which is just delete chars “kee”)
[3][2] – to make string “ge” from “kee” we need to perform 3 modifications also by removing from first string ‘g’ and from second ‘ke’
So basically every time we will be moving diagonally up, from left corner we will get number of removals to get the same substring backwards. Thing to notice here is that it is like having on string two pointers, one moving from beginning and other from end. Very important spot is that strings do not necessary has to have even number of characters, so this is the reason we also has to check upper and lower values in dp[][].
Recommended Posts:
- Minimum number of deletions to make a string palindrome
- Minimum number of Appends needed to make a string palindrome
- Minimum number of deletions to make a sorted sequence
- Minimum number of deletions and insertions to transform one string into another
- Minimum characters to be added at front to make string palindrome
- Number of Counterclockwise shifts to make a string palindrome
- Minimum deletions from string to reduce it to string with at most 2 unique characters
- Minimum number of deletions so that no two consecutive are same
- Minimum number of characters to be removed to make a binary string alternate
- Minimum removal to make palindrome permutation
- Remove a character from a string to make it a palindrome
- Minimum changes required to make first string substring of second string
- Minimum cost to convert string into palindrome
- Minimum reduce operations to covert a given string into a palindrome
- Minimum changes to a string to make all substrings distinct
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.