VOOZH about

URL: https://www.geeksforgeeks.org/dsa/minimum-removal-make-palindrome-permutation/

⇱ Minimum removal to make palindrome permutation - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Minimum removal to make palindrome permutation

Last Updated : 22 Nov, 2022

Given a string S, we have to find minimum characters that we can remove to make any permutation of the string S a palindrome. 
In simple terms, the problem states that: Make the string a palindrome by rearranging it in any way by removing the minimum number of characters including removing 0 number of character if possible.

Note : we are considering only small alphabets. 

Examples : 

Input : geeksforgeeks
Output : 2
Explanation : if we remove 2 characters lets 
say 'f' and 'r', we remain with "geeksogeeks" 
which can be re-arranged like "skeegogeeks" 
to make it a palindrome. Removal of less than 
2 character wouldn't make this string a 
palindrome.

Input : shubham
Output : 4
If we remove any 4 characters except 'h' (let's
say 's', 'b', 'a', 'm'), we remain with "huh" 
which is a palindrome.

A Naive approach would check every permutation of the string for a palindrome and if not found then remove one character and check again. This approach is very complicated and will take a lot of time.

An Efficient approach: Notice that we don't need to print the minimum characters, just the minimum number. So, an effective idea is a key that: there can be two types of palindrome, even length, and odd length palindrome. We can deduce the fact that an even length palindrome must have every character occurring even number of times(i.e. the frequency of every character is even). Similarly, an odd palindrome must have every character occurring even number of times except one character occurring odd number of times.

From these facts, the problem turn out to be quite simple. We check frequency of every character and those characters occurring odd number of times are then counted. Then the result is total count of odd frequency characters subtraction 1. 

👁 Image

Implementation:


Output
2

Time Complexity: O(n), where n is the length of the given string.
Auxiliary Space: O(1)

Comment
Article Tags: