Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

e.g "ccddcc" in the string "abaccddccefe"

I thought of a solution but it runs in O(n^2) time

Algo 1:

Steps: Its a brute force method

  1. Have 2 for loops
    for i = 1 to i less than array.length -1
    for j=i+1 to j less than array.length
  2. This way you can get substring of every possible combination from the array
  3. Have a palindrome function which checks if a string is palindrome
  4. so for every substring (i,j) call this function, if it is a palindrome store it in a string variable
  5. If you find next palindrome substring and if it is greater than the current one, replace it with current one.
  6. Finally your string variable will have the answer

Issues: 1. This algo runs in O(n^2) time.

Algo 2:

  1. Reverse the string and store it in diferent array
  2. Now find the largest matching substring between both the array
  3. But this too runs in O(n^2) time

Can you guys think of an algo which runs in a better time. If possible O(n) time

share|improve this question
9  
I think the first one is O(n^2) to get the substrings * O(n) to check if they are palindromes, for a total of O(n^3)? – Skylar Saveland Oct 3 '12 at 20:48
What if I knew I was working with palindrome and save my strings as two halves and then if I used Java I'd have O(1) check for the function? – viki.omega9 Mar 22 at 17:03

15 Answers

You can do it in linear time. There's a description of the algorithm here - http://johanjeuring.blogspot.com/2007/08/finding-palindromes.html

share|improve this answer
7  
harsh. The guy finds a solution which is exactly what you asked for and you complain it's too tedious – 1800 INFORMATION Jul 12 '09 at 1:12
The nature of Computer Science and Information Theory in general is such that equivalent solutions to a problem tend to share a similar nature. If you find the solution too tedious, you should carefully reconsider whether you actually want the solution. – Dave Gamble Jul 12 '09 at 2:29
3  
I am sorry for my comment. I agree I was harsh...Sorry again and really appreciate your help – Learner Jul 12 '09 at 3:13

Here's a link to a linear-time algorithm with a nice, concrete explanation that I found easier going than Johan Jeuring's Haskell approach (which is linked to from the currently accepted answer):

http://www.akalin.cx/2007/11/28/finding-the-longest-palindromic-substring-in-linear-time/

share|improve this answer
In a naive solution, I think that n-length string has (n^2-n)/2 continuous substrings to test if they are a palindrome (and not n choose 2). But maybe I'm wrong. – Sanich Dec 13 '12 at 14:22
@Sanich: ??? (n^2-n)/2 = n*(n-1)/2! = n!/((n-2)!*2!) = n choose 2. – j_random_hacker Dec 13 '12 at 16:44

The Algo 2 may not work for all string. Here is an example of such a string "ABCDEFCBA".

Not that the string has "ABC" and "CBA" as its substring. If you reverse the original string, it will be "ABCFEDCBA". and the longest matching substring is "ABC" which is not a palindrome.

You may need to additionally check if this longest matching substring is actually a palindrome which has the running time of O(n^3).

share|improve this answer

As far as I understood the problem, we can find palindromes around a center index and span our search both ways, to the right and left of the center. Given that and knowing there's no palindrome on the corners of the input, we can set the boundaries to 1 and length-1. While paying attention to the minimum and maximum boundaries of the String, we verify if the characters at the positions of the symmetrical indexes (right and left) are the same for each central position till we reach our max upper bound center.

The outer loop is O(n) (max n-2 iterations), and the inner while loop is O(n) (max around (n / 2) - 1 iterations)

Here's my Java implementation using the example provided by other users.

class LongestPalindrome {

    /**
     * @param input is a String input
     * @return The longest palindrome found in the given input.
     */
    public static String getLongestPalindrome(final String input) {
        int rightIndex = 0, leftIndex = 0;
        String currentPalindrome = "", longestPalindrome = "";
        for (int centerIndex = 1; centerIndex < input.length() - 1; centerIndex++) {
            leftIndex = centerIndex - 1;  rightIndex = centerIndex + 1;
            while (leftIndex >= 0 && rightIndex < input.length()) {
                if (input.charAt(leftIndex) != input.charAt(rightIndex)) {
                    break;
                }
                currentPalindrome = input.substring(leftIndex, rightIndex + 1);
                longestPalindrome = currentPalindrome.length() > longestPalindrome.length() ? currentPalindrome : longestPalindrome;
                leftIndex--;  rightIndex++;
            }
        }
        return longestPalindrome;
    }

    public static void main(String ... args) {
        String str = "HYTBCABADEFGHABCDEDCBAGHTFYW12345678987654321ZWETYGDE";
        String longestPali = getLongestPalindrome(str);
        System.out.println("String: " + str);
        System.out.println("Longest Palindrome: " + longestPali);
    }
}

The output of this is the following:

marcello:datastructures marcello$ javac LongestPalindrome
marcello:datastructures marcello$ java LongestPalindrome
String: HYTBCABADEFGHABCDEDCBAGHTFYW12345678987654321ZWETYGDE
Longest Palindrome: 12345678987654321
share|improve this answer
1  
If i give "HYTBCABADEFGHABCDEDCBAGHTFYW1234567887654321ZWETYGDE" It does not work But anwer should be 1234567887654321 – elbek Jun 4 '12 at 3:08
I'm afraid this is pretty much exactly the OP's cubic-time algo #1. – j_random_hacker Sep 16 '12 at 7:50
above code doesnt work for HYTBCABADEFGHABCDEDCBAGHTFYW1234567887654321ZWETYGDE case where answer should be 1234567887654321 – gabhi Apr 15 at 2:28

Hi Here is my code to find the longest palindrome in the string. Kindly refer to the following link to understand the algorithm http://stevekrenzel.com/articles/longest-palnidrome

Test data used is HYTBCABADEFGHABCDEDCBAGHTFYW12345678987654321ZWETYGDE

 //Function GetPalindromeString

public static string GetPalindromeString(string theInputString)
 { 

        int j = 0;
        int k = 0;
        string aPalindrome = string.Empty;
        string aLongestPalindrome = string.Empty ;          
        for (int i = 1; i < theInputString.Length; i++)
        {
            k = i + 1;
            j = i - 1;
            while (j >= 0 && k < theInputString.Length)
            {
                if (theInputString[j] != theInputString[k])
                {
                    break;
                }
                else
                {
                    j--;
                    k++;
                }
                aPalindrome = theInputString.Substring(j + 1, k - j - 1);
                if (aPalindrome.Length > aLongestPalindrome.Length)
                {
                    aLongestPalindrome = aPalindrome;
                }
            }
        }
        return aLongestPalindrome;     
  }
share|improve this answer
I'm not sure if this works with palindromes with even length...could you confirm? – st0le Feb 19 '11 at 9:11
This works for even palindromes you can run this program and let me know if is not working for you.For understanding of the algorithm kindly refer to the following link stevekrenzel.com/articles/longest-palnidrome – Mohit Bhandari Feb 26 '11 at 20:12
@st0le: This logic will not work for even palindromes but it could be adjusted for even palindromes.Kindly regret me for the earlier commnent.I got the logic and i will update it in a few days as and when i get a time. – Mohit Bhandari Mar 8 '11 at 12:52
never read your previous comment until today...you didn't address me last time....take your time, it was just an observation. – st0le Mar 9 '11 at 5:38
I originally thought the OP's algo #1 was O(n^2) time, but it's actually boneheadedly O(n^3), so even though your algorithm doesn't make it all the way to the achievable O(n) bound, it's still an improvement. – j_random_hacker Sep 16 '12 at 7:56

Try the string - "HYTBCABADEFGHABCDEDCBAGHTFYW123456789987654321ZWETYGDE"; It should work for even and odd pals. Much Thanks to Mohit!

using namespace std;

string largestPal(string input_str)
{
  string isPal = "";
  string largest = "";
  int j, k;
  for(int i = 0; i < input_str.length() - 1; ++i)
    {
      k = i + 1;
      j = i - 1;

      // starting a new interation                                                      
      // check to see if even pal                                                       
      if(j >= 0 && k < input_str.length()) {
        if(input_str[i] == input_str[j])
          j--;
        else if(input_str[i] == input_str[j]) {
          k++;
        }
      }
      while(j >= 0 && k < input_str.length())
        {
          if(input_str[j] != input_str[k])
            break;
          else
            {
              j--;
              k++;
            }
          isPal = input_str.substr(j + 1, k - j - 1);
            if(isPal.length() > largest.length()) {
              largest = isPal;
            }
        }
    }
  return largest;
}
share|improve this answer
1  
This almost does things in O(n^2) time. Why build isPal -- an O(n) operation -- only to measure its length!? Also it has a buggy attempt at handling even palindromes. On even-palindrome bugginess: else if(input_str[i] == input_str[j]) can never succeed because that same test must have failed in the previous if statement; and it's buggy anyway because you can't tell just by looking at 2 characters spaced 2 positions apart whether you're looking at an even palindrome or an odd one (consider AAA and AAAA). – j_random_hacker Sep 16 '12 at 7:50

You can find the theoretical discussion in Algorithms on strings, trees, and sequences p.197 ; The author discusses a linear time solution using suffix trees.

share|improve this answer
1  
Seems that link is broken now. :( – j_random_hacker Sep 16 '12 at 7:27

I was asked this question recently. Here's the solution I [eventually] came up with. I did it in JavaScript because it's pretty straightforward in that language.

The basic concept is that you walk the string looking for the smallest multi-character palindrome possible (either a two or three character one). Once you have that, expand the borders on both sides until it stops being a palindrome. If that length is longer than current longest one, store it and move along.

// This does the expanding bit.
function getsize(s, start, end) {
    var count = 0, i, j;
    for (i = start, j = end; i >= 0 && j < s.length; i--, j++) {
        if (s[i] !== s[j]) {
            return count;
        }
        count = j - i + 1; // keeps track of how big the palindrome is
    }
    return count;
}

function getBiggestPalindrome(s) {
    // test for simple cases
    if (s === null || s === '') { return 0; }
    if (s.length === 1) { return 1; }
    var longest = 1;
    for (var i = 0; i < s.length - 1; i++) {
        var c = s[i]; // the current letter
        var l; // length of the palindrome
        if (s[i] === s[i+1]) { // this is a 2 letter palindrome
            l = getsize(s, i, i+1);
        }
        if (i+2 < s.length && s[i] === s[i+2]) { // 3 letter palindrome
            l = getsize(s, i+1, i+1);
        }
        if (l > longest) { longest = l; }
    }
    return longest;
}

This could definitely be cleaned up and optimized a little more, but it should have pretty good performance in all but the worst case scenario (a string of the same letter).

share|improve this answer
I originally thought the OP's algo #1 was O(n^2) time, but it's actually boneheadedly O(n^3), so even though your algorithm doesn't make it all the way to the achievable O(n) bound, it's still an improvement. – j_random_hacker Sep 16 '12 at 7:53

Here is my algorithm:

1) set the current center to be the first letter

2) simultaneously expand to the left and right until you find the maximum palindrome around the current center

3) if the palindrome you find is bigger than the previous palindrome, update it

4) set the current center to be the next letter

5) repeat step 2) to 4) for all letters in the string

This runs in O(n).

Hope it helps.

share|improve this answer
2  
Consider the the string "aaaaaa". This runs in O(n^2) using your algorithm. – paislee Jun 13 '12 at 19:12
I originally thought the OP's algo #1 was O(n^2) time, but it's actually boneheadedly O(n^3), so even though your algorithm doesn't make it all the way to the achievable O(n) bound, it's still an improvement. – j_random_hacker Sep 16 '12 at 7:54

with regex and ruby you can scan for short palindromes like this:

PROMPT> irb
>> s = "longtextwithranynarpalindrome"
=> "longtextwithranynarpalindrome"
>> s =~ /((\w)(\w)(\w)(\w)(\w)\6\5\4\3\2)/; p $1
nil
=> nil
>> s =~ /((\w)(\w)(\w)(\w)\w\5\4\3\2)/; p $1
nil
=> nil
>> s =~ /((\w)(\w)(\w)(\w)\5\4\3\2)/; p $1
nil
=> nil
>> s =~ /((\w)(\w)(\w)\w\4\3\2)/; p $1
"ranynar"
=> nil
share|improve this answer

Following code calculates Palidrom for even length and odd length strings.

Not the best solution but works for both the cases

HYTBCABADEFGHABCDEDCBAGHTFYW12345678987654321ZWETYGDE HYTBCABADEFGHABCDEDCBAGHTFYW1234567887654321ZWETYGDE

private static String getLongestPalindrome(String string) {
    String odd = getLongestPalindromeOdd(string);
    String even = getLongestPalindromeEven(string);
    return (odd.length() > even.length() ? odd : even);
}

public static String getLongestPalindromeOdd(final String input) {
    int rightIndex = 0, leftIndex = 0;
    String currentPalindrome = "", longestPalindrome = "";
    for (int centerIndex = 1; centerIndex < input.length() - 1; centerIndex++) {
        leftIndex = centerIndex;
        rightIndex = centerIndex + 1;
        while (leftIndex >= 0 && rightIndex < input.length()) {
            if (input.charAt(leftIndex) != input.charAt(rightIndex)) {
                break;
            }
            currentPalindrome = input.substring(leftIndex, rightIndex + 1);
            longestPalindrome = currentPalindrome.length() > longestPalindrome
                    .length() ? currentPalindrome : longestPalindrome;
            leftIndex--;
            rightIndex++;
        }
    }
    return longestPalindrome;
}

public static String getLongestPalindromeEven(final String input) {
    int rightIndex = 0, leftIndex = 0;
    String currentPalindrome = "", longestPalindrome = "";
    for (int centerIndex = 1; centerIndex < input.length() - 1; centerIndex++) {
        leftIndex = centerIndex - 1;
        rightIndex = centerIndex + 1;
        while (leftIndex >= 0 && rightIndex < input.length()) {
            if (input.charAt(leftIndex) != input.charAt(rightIndex)) {
                break;
            }
            currentPalindrome = input.substring(leftIndex, rightIndex + 1);
            longestPalindrome = currentPalindrome.length() > longestPalindrome
                    .length() ? currentPalindrome : longestPalindrome;
            leftIndex--;
            rightIndex++;
        }
    }
    return longestPalindrome;
}
share|improve this answer

We can also reverse the string and save the equal indices in both the strings in an array that way we dont need to run the function multiple times we just need to print the substring with the longest continuous order.

share|improve this answer
1  
It's not clear to me exactly what you mean by "store the equal indices", but if you mean storing every pair of indices where the forward string and the reverse string have the same character: There could be O(n^2) of these (e.g. if the string is all the same character), so this is no help. – j_random_hacker Sep 16 '12 at 6:56

There doesn't seem to be a liner (O(N)) dynamic programming solution yet. So here's mine.

Function F(i) is to find the longest palindrome ending at position i. So recursively F(i) can be:

F(i):
 0, if i==0
 F(i-1)-1, if A[i]==A[F(i-1)-1] and F(i-1)>=1
 F(i-1), if A[F(i-1)..i-1] is all repeating characters (* see below)
 i, otherwise

(*): this step can take O(1) to run if you keep track whether A[F(i-1)..i-1] is all repeating characters.

To find the longest palindrome, just call F(i), from i=0..N-1. There are totally N subproblems, each take O(1) to run. So the total run time is O(N).

// https://gist.github.com/3087148/16834bcfaa58764cbcdc1fa2dd4726a69310c7c1
class FindPal
    {
        public string A;
        public Tuple<int,bool>[] table;   // {PalStartPos, IsRepeatedChars}
        public FindPal(string A)
        {
            this.A = A;
            this.table = new Tuple<int, bool>[A.Length];
            for (int i = 0; i < A.Length; i++)
            {
                table[i] = null;
            }
        }
        private Tuple<int, bool> F(int i)
        {
            if (table[i] != null)
                return table[i];
            if (i == 0)
                table[i] = new Tuple<int, bool>(i, true);
            else if (F(i - 1).Item1 >= 1 && A[F(i - 1).Item1 - 1] == A[i])
                table[i] = new Tuple<int, bool>(F(i - 1).Item1 - 1, false);
            else if (F(i - 1).Item2 && A[F(i - 1).Item1] == A[i])
                table[i] = new Tuple<int, bool>(F(i - 1).Item1, true);
            else
                table[i] = new Tuple<int, bool>(i, true);
            return table[i];
        }

        public Tuple<int, int> Solve()
        {
            if (A.Length == 0) return null;
            int m1 = -1, m2 = -1, l = 0;
            for (int i = 0; i < A.Length; i++)
            {
                int b = F(i).Item1;
                int l_ = i - b + 1;
                if (l_ > l)
                {
                    l = l_;
                    m1 = b;
                    m2 = i;
                }
            }
            return new Tuple<int, int>(m1, m2);
        }
    }
share|improve this answer
Good try, but this fails on some overlapping palindromes. E.g. ABCBABCB -- the longest palindrome here is BCBABCB, but your algorithm won't find it because it takes an all-or-nothing approach: when it sees the B following the promising ABCBA at the start, it abandons everything. Instead it needs to somehow know that it can start again from the 2nd character. The difficulty is in tracking how and where to safely "start again" from in linear time. – j_random_hacker Sep 16 '12 at 6:54

Here is a class i made in PHP to do the same job as above

    class Palindrome {

      private $_palindrome_maxlength = 0;
      private $_maxwordlen = 15;
      private $_minwordlen = 3;
      private $_longest_palindrome = '';
      private $_palindromes = array();      

      public function __construct($min=3,$max=15) {
          $this->_minwordlen = $min;
          $this->_maxwordlen = $max;          
      }

      private function check($index,$inputStr,$revString) {
            $wordIndex = $this->_minwordlen;
            while($wordIndex<=$this->_maxwordlen) {                                  
                $word = substr($inputStr,$index,$wordIndex); 
                $wordLength = strlen($word);    
                if (!is_bool(strpos($revString,$word)) && strlen($word)>$this->_minwordlen) {                                              
                    if (!in_array($word,$this->_palindromes) && $word==strrev($word)) {
                        if (strlen($word)>=strlen($this->_longest_palindrome)) {
                            $this->_longest_palindrome = $word;
                        }
                        $this->_palindromes[] = $word;
                    }
                }
                unset($word);
                unset($wordLength);
                $wordIndex++;                    
            }              
            unset($wordIndex);      
      }

      public function getlongest($inputStr) {

          $strLength = strlen($inputStr);
          $revString = strrev($inputStr);          
          $wordStartIndex=0;                     
          while($wordStartIndex<$strLength) {              
              $this->check($wordStartIndex,$inputStr,$revString);
              $wordStartIndex++;
          }         

          print_r($this->_palindromes);

          unset($revString);
          unset($strLength);
          return($this->_longest_palindrome);
      }
  }

 $palidrome = new Palindrome();
 echo $palidrome->getlongest('this is a test bob eve tevet');

Hope you like the code.

Marc

share|improve this answer
Sorry, but this is terrible code. It takes cubic time for starters (just like the OP's proposed algo #1); it has arbitrary limits built in (15 characters?); and it keeps track of irrelevant stuff. You don't need $revString at all if you're going to test palindrome-ness with $word==strrev($word). You don't need _minwordlen or _maxwordlen. In fact most of the stuff the first 2 if statements in check() test could be replaced simply with if ($word==strrev($word) && $wordLength > strlen($this->_longest_palindrome)). – j_random_hacker Sep 16 '12 at 7:46

my solution is :

static string GetPolyndrom(string str)
{
    string Longest = "";

    for (int i = 0; i < str.Length; i++)
    {
        if ((str.Length - 1 - i) < Longest.Length)
        {
            break;
        }
        for (int j = str.Length - 1; j > i; j--)
        {
            string str2 = str.Substring(i, j - i + 1);
            if (str2.Length > Longest.Length)
            {
                if (str2 == str2.Reverse())
                {
                    Longest = str2;
                }
            }
            else
            {
                break;
            }
        }

    }
    return Longest;
}
share|improve this answer
This takes cubic time in the string length, because of the Substring() and string-equality (==) operations. It's basically identical the OP's algo #1. – j_random_hacker Sep 16 '12 at 7:56

protected by Community Feb 29 '12 at 4:09

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.