vote up 23 vote down star
8

Definition:

A palindrome is a word, phrase, number or other sequence of units that has the property of reading the same in either direction

How to check if the given string is a palindrome?

This was one of the FAIQ [Frequently Asked Interview Question] a while ago but that mostly using C.

Looking for solutions in any and all languages possible.

flag
5  
A man, a plan, a canal, Panama – Jonathan Sep 9 '08 at 14:26
4  
Go hang a salami. I'm a lasagna hog. – xanadont Sep 9 '08 at 14:44
1  
Do you care about punctuation? Case? What about locale-sensitive case folding? – sylvarking Sep 9 '08 at 15:19
show 4 more comments

58 Answers

1 2 next
vote up 2 vote down
boolean isPalindrome(String str1) {
  //first strip out punctuation and spaces
  String stripped = str1.replaceAll("[^a-zA-Z0-9]", "");
  return stripped.equalsIgnoreCase((new StringBuilder(stripped)).reverse().toString());
}

Java version

link|flag
show 3 more comments
vote up 30 vote down

Language agnostic meta-code then...

rev = StringReverse(originalString)
return ( rev == originalString );
link|flag
6  
I'm surprised this one is voted up so much considering it's wrong. As people have pointed out, it will not work for all palindromes, specifically with punctuation etc. The wisdom of crowds eh.. – SCdF Oct 23 '08 at 18:48
1  
With a strict definition of a palindrome, however, this works exactly. The definition does not specify what "reading the same in either direction" means, and as such, a strict character for character comparison, which this is, is the most simple algorithm. – cdeszaq Oct 27 '08 at 21:39
show 9 more comments
vote up 2 vote down

Here's my solution in c#

static bool isPalindrome(string s)
{
	string allowedChars = "abcdefghijklmnopqrstuvwxyz"+
        "1234567890ABCDEFGHIJKLMNOPQRSTUVWXYZ";
	string compareString = String.Empty;
	string rev = string.Empty;

	for (int i = 0; i <= s.Length - 1; i++)
	{
		char c = s[i];

		if (allowedChars.IndexOf(c) > -1)
		{
			compareString += c;
		}
	}


	for (int i = compareString.Length - 1; i >= 0; i--)
	{
	    char c = compareString[i];
	    rev += c;
	}

	return rev.Equals(compareString, 
        StringComparison.CurrentCultureIgnoreCase);
}
link|flag
vote up 4 vote down
Delphi

function IsPalindrome(const s: string): boolean;
var
  i, j: integer;
begin
  Result := false;
  j := Length(s);
  for i := 1 to Length(s) div 2 do begin
    if s[i] <> s[j] then
      Exit;
    Dec(j);
  end;
  Result := true;
end;
link|flag
vote up 10 vote down

Unoptimized Python:

>>> def is_palindrome(s):
...     return s == s[::-1]
link|flag
1  
It doesn't work for sequences that doesn't support extended slicing. python.org/doc/2.5.2/ref/slicings.html . But def ispal(iterable): s = list(iterable); return s == s[::-1] does work. – J.F. Sebastian Nov 4 '08 at 16:38
show 5 more comments
vote up 8 vote down

Remember, you'll want to strip out punctuation characters - spaces, commas, exclamation points, etc. - before processing.

link|flag
show 2 more comments
vote up 6 vote down

Here's a python way. Note: this isn't really that "pythonic" but it demonstrates the algorithm.

def IsPalindromeString(n):
    myLen = len(n)
    i = 0
    while i <= myLen/2:
        if n[i] != n[myLen-1-i]:
            return False
        i += 1
    return True
link|flag
3  
btw, CamelCase is not recommended for function and local variable names. See 'Style Guide for Python Code' python.org/dev/peps/pep-0008 – J.F. Sebastian Nov 4 '08 at 16:26
show 1 more comment
vote up 24 vote down

Windows XP (might also work on 2000) or later BATCH script:

@echo off

call :is_palindrome %1
if %ERRORLEVEL% == 0 (
    echo %1 is a palindrome
) else (
    echo %1 is NOT a palindrome
)
exit /B 0

:is_palindrome
    set word=%~1
    set reverse=
    call :reverse_chars "%word%"
    set return=1
    if "$%word%" == "$%reverse%" (
        set return=0
    )
exit /B %return%

:reverse_chars
    set chars=%~1
    set reverse=%chars:~0,1%%reverse%
    set chars=%chars:~1%
    if "$%chars%" == "$" (
        exit /B 0
    ) else (
        call :reverse_chars "%chars%"
    )
exit /B 0
link|flag
2  
Awesome, batch FTW! – Simon Steele Sep 12 '08 at 15:51
1  
+1 because you used a batch script... badass. – Daniel Schaffer Apr 17 at 14:29
show 1 more comment
vote up 10 vote down

C#: LINQ

var str = "a b a";
var test = Enumerable.SequenceEqual(str.ToCharArray(), 
           str.ToCharArray().Reverse());
link|flag
vote up 1 vote down

Many ways to do it. I guess the key is to do it in the most efficient way possible (without looping the string). I would do it as a char array which can be reversed easily (using C#).

string mystring = "abracadabra";

char[] str = mystring.ToCharArray();
Array.Reverse(str);
string revstring = new string(str);

if (mystring.equals(revstring))
{
    Console.WriteLine("String is a Palindrome");
}
link|flag
vote up 10 vote down

C# in-place algorithm. Any preprocessing, like case insensitivity or stripping of whitespace and punctuation should be done before passing to this function.

boolean IsPalindrome(string s) {
    for (int i = 0; i < s.Length / 2; i++)
    {
        if (s[i] != s[s.Length - 1 - i]) return false;
    }
    return true;
}


Edit: removed unnecessary "+1" in loop condition and spent the saved comparison on removing the redundant Length comparison. Thanks to the commenters!

link|flag
1  
Sorry, I'm talking about the s.Length / 2 + 1. It looks like the plus one will only ever make you check the middle letter in an odd length word, or the middle two letters in an even length word twice. – Imbue Oct 28 '08 at 19:05
1  
I've agreed with Imbue. Consider s = 'aba': s.Length / 2 == 1 -> i<=1 -> s[1] = s[3 - 1 - 1] (unnecessary comparison of middle letter with itself) or s = 'ab': s.Length / 2 == 1 -> i <= 1 -> s[1] = s[2 - 1 - 1] (letters checked twice unnecessary). – J.F. Sebastian Nov 4 '08 at 12:15
show 5 more comments
vote up 3 vote down

Using a good data structure usually helps impress the professor:

Push half the chars onto a stack (Length / 2).
Pop and compare each char until the first unmatch.
If the stack has zero elements: palindrome.
*in the case of a string with an odd Length, throw out the middle char.

link|flag
show 2 more comments
vote up 3 vote down

Here's my solution, without using a strrev. Written in C#, but it will work in any language that has a string length function.

private static bool Pal(string s) {
	for (int i = 0; i < s.Length; i++) {
		if (s[i] != s[s.Length - 1 - i]) {
			return false;
		}
	}
	return true;
}
link|flag
show 2 more comments
vote up 2 vote down

This Java code should work inside a boolean method:

Note: You only need to check the first half of the characters with the back half, otherwise you are overlapping and doubling the amount of checks that need to be made.

private static boolean doPal(String test) {
    for(int i = 0; i < test.length() / 2; i++) {
        if(test.charAt(i) != test.charAt(test.length() - 1 - i)) {
            return false;
        }
    }
    return true;
}
link|flag
vote up 3 vote down

Java solution:

public class QuickTest {

public static void main(String[] args) {
    check("AmanaplanacanalPanama".toLowerCase());
    check("Hello World".toLowerCase());
}

public static void check(String aString) {
    System.out.print(aString + ": ");
    char[] chars = aString.toCharArray();
    for (int i = 0, j = (chars.length - 1); i < (chars.length / 2); i++, j--) {
        if (chars[i] != chars[j]) {
            System.out.println("Not a palindrome!");
            return;
        }
    }
    System.out.println("Found a palindrome!");
}

}

link|flag
vote up 34 vote down

PHP sample:

$string = "A man, a plan, a canal, Panama";

function is_palindrome($string)
{
    $a = strtolower(preg_replace("/[^A-Za-z0-9]/","",$string));
    return $a==strrev($a);
}

Removes any non-alphanumeric characters (spaces, commas, exclamation points, etc.) to allow for full sentences as above, as well as simple words.

link|flag
3  
Just curious - why not strtolower() first so you have a shorter regex? – Chris Lutz Jul 3 at 9:03
show 1 more comment
vote up 2 vote down

EDIT: from the comments:

bool palindrome(std::string const& s) 
{ 
  return std::equal(s.begin(), s.end(), s.rbegin()); 
}


The c++ way.

My naive implementation using the elegant iterators. In reality, you would probably check and stop once your forward iterator has past the halfway mark to your string.

#include <string>
#include <iostream>

using namespace std;
bool palindrome(string foo)
{
    string::iterator front;
    string::reverse_iterator back;
    bool is_palindrome = true;
    for(front = foo.begin(), back = foo.rbegin();
        is_palindrome && front!= foo.end() && back != foo.rend();
        ++front, ++back
        )
    {
        if(*front != *back)
            is_palindrome = false;
    }
    return is_palindrome;
}
int main()
{
    string a = "hi there", b = "laval";

    cout << "String a: \"" << a << "\" is " << ((palindrome(a))? "" : "not ") << "a palindrome." <<endl;
    cout << "String b: \"" << b << "\" is " << ((palindrome(b))? "" : "not ") << "a palindrome." <<endl;

}
link|flag
show 3 more comments
vote up 0 vote down

Another one from Delphi, which I think is a little more rigorous than the other Delphi example submitted. This can easily turn into a golfing match, but I've tried to make mine readable.

Edit0: I was curious about the performance characteristics, so I did a little test. On my machine, I ran this function against a 60 character string 50 million times, and it took 5 seconds.

function TForm1.IsPalindrome(txt: string): boolean;
var
  i, halfway, len : integer;
begin
  Result := True;
  len := Length(txt);

  {
  special cases:
  an empty string is *never* a palindrome
  a 1-character string is *always* a palindrome
  }
  case len of
    0 : Result := False;
    1 : Result := True;
    else begin
      halfway := Round((len/2) - (1/2));  //if odd, round down to get 1/2way pt

      //scan half of our string, make sure it is mirrored on the other half
      for i := 1 to halfway do begin
        if txt[i] <> txt[len-(i-1)] then begin
          Result := False;
          Break;
        end;  //if we found a non-mirrored character
      end;  //for 1st half of string
    end;  //else not a special case
  end;  //case
end;

And here is the same thing, in C#, except that I've left it with multiple exit points, which I don't like.

private bool IsPalindrome(string txt) {
  int len = txt.Length;

  /*
  Special cases:
  An empty string is *never* a palindrome
  A 1-character string is *always* a palindrome
  */    
  switch (len) {
    case 0: return false;
    case 1: return true;
  }  //switch
  int halfway = (len / 2);

  //scan half of our string, make sure it is mirrored on the other half
  for (int i = 0; i < halfway; ++i) {
    if (txt.Substring(i,1) != txt.Substring(len - i - 1,1)) {
      return false;
    }  //if
  }  //for
  return true;
}
link|flag
show 1 more comment
vote up 0 vote down

C#3 - This returns false as soon as a char counted from the beginning fails to match its equivalent at the end:

static bool IsPalindrome(this string input)
{
    char[] letters = input.ToUpper().ToCharArray();

    int i = 0;
    while( i < letters.Length / 2 )
        if( letters[i] != letters[letters.Length - ++i] )
            return false;

    return true;
}
link|flag
show 2 more comments
vote up 2 vote down

Here's a Python version that deals with different cases, punctuation and whitespace.

import string

def is_palindrome(palindrome):
    letters = palindrome.translate(string.maketrans("",""),
                  string.whitespace + string.punctuation).lower()
    return letters == letters[::-1]

Edit: Shamelessly stole from Blair Conrad's neater answer to remove the slightly clumsy list processing from my previous version.

link|flag
vote up 0 vote down

Three versions in Smalltalk, from dumbest to correct.


In Smalltalk, = is the comparison operator:

isPalindrome: aString
    "Dumbest."
    ^ aString reverse = aString


The message #translateToLowercase returns the string as lowercase:

isPalindrome: aString
    "Case insensitive"
    |lowercase|
    lowercase := aString translateToLowercase.
    ^ lowercase reverse = lowercase


And in Smalltalk, strings are part of the Collection framework, you can use the message #select:thenCollect:, so here's the last version:

isPalindrome: aString
    "Case insensitive and keeping only alphabetic chars
    (blanks & punctuation insensitive)."
    |lowercaseLetters|
    lowercaseLetters := aString
        select: [:char | char isAlphabetic]
        thenCollect: [:char | char asLowercase]. 
    ^ lowercaseLetters reverse = lowercaseLetters
link|flag
vote up 2 vote down

Another C++ one. Optimized for speed and size.

bool is_palindrome(const std::string& candidate) {
    for(std::string::const_iterator left = candidate.begin(), right = candidate.end(); left < --right ; ++left)
        if (*left != *right)
            return false;
    return true;
}

link|flag
vote up 0 vote down

In Ruby, converting to lowercase and stripping everything not alphabetic:

def isPalindrome( string )
    ( test = string.downcase.gsub( /[^a-z]/, '' ) ) == test.reverse
end

But that feels like cheating, right? No pointers or anything! So here's a C version too, but without the lowercase and character stripping goodness:

#include <stdio.h>
int isPalindrome( char * string )
{
    char * i = string;
    char * p = string;
    while ( *++i ); while ( i > p && *p++ == *--i );
    return i <= p && *i++ == *--p;
}
int main( int argc, char **argv )
{
    if ( argc != 2 )
    {
        fprintf( stderr, "Usage: %s <word>\n", argv[0] );
        return -1;
    }
    fprintf( stdout, "%s\n", isPalindrome( argv[1] ) ? "yes" : "no" );
    return 0;
}

Well, that was fun - do I get the job ;^)

link|flag
vote up 7 vote down

I'm seeing a lot of incorrect answers here. Any correct solution needs to ignore whitespace and punctuation (and any non-alphabetic characters actually) and needs to be case insensitive.

A few good example test cases are:

"A man, a plan, a canal, Panama."

"A Toyota's a Toyota."

"A"

""

As well as some non-palindromes.

Example solution in C# (note: empty and null strings are considered palindromes in this design, if this is not desired it's easy to change):

public static bool IsPalindrome(string palindromeCandidate)
{
    if (string.IsNullOrEmpty(palindromeCandidate))
    {
        return true;
    }
    Regex nonAlphaChars = new Regex("[^a-z0-9]");
    string alphaOnlyCandidate = nonAlphaChars.Replace(palindromeCandidate.ToLower(), "");
    if (string.IsNullOrEmpty(alphaOnlyCandidate))
    {
        return true;
    }
    int leftIndex = 0;
    int rightIndex = alphaOnlyCandidate.Length - 1;
    while (rightIndex > leftIndex)
    {
        if (alphaOnlyCandidate[leftIndex] != alphaOnlyCandidate[rightIndex])
        {
            return false;
        }
        leftIndex++;
        rightIndex--;
    }
    return true;
}
link|flag
show 2 more comments
vote up 6 vote down

How about a (non-trivial) solution that itself is also a palindrome?

link|flag
vote up 8 vote down

A more Ruby-style rewrite of Hal's Ruby version:

class String
  def palindrome?
    (test = gsub(/[^A-Za-z]/, '').downcase) == test.reverse
  end
end

Now you can call palindrome? on any string.

link|flag
vote up 8 vote down

C in the house. (not sure if you didn't want a C example here)

bool IsPalindrome(char *s)
{
    int  i,d;
    int  length = strlen(s);
    char cf, cb;

    for(i=0, d=length-1 ; i < length && d >= 0 ; i++ , d--)
    {
    	while(cf= toupper(s[i]), (cf < 'A' || cf >'Z') && i < length-1)i++;
    	while(cb= toupper(s[d]), (cb < 'A' || cb >'Z') && d > 0       )d--;
    	if(cf != cb && cf >= 'A' && cf <= 'Z' && cb >= 'A' && cb <='Z')
    		return false;
    }
    return true;
}

That will return true for "racecar", "Racecar", "race car", "racecar ", and "RaCe cAr". It would be easy to modify to include symbols or spaces as well, but I figure it's more useful to only count letters(and ignore case). This works for all palindromes I've found in the answers here, and I've been unable to trick it into false negatives/positives.

Also, if you don't like bool in a "C" program, it could obviously return int, with return 1 and return 0 for true and false respectively.

link|flag
show 1 more comment
vote up 1 vote down

Perl:

sub is_palindrome($)
{
  $s = lc(shift); # ignore case
  $s =~ s/\W+//g; # consider only letters, digits, and '_'
  $s eq reverse $s;
}

It ignores case and strips non-alphanumeric characters (it locale- and unicode- neutral).

link|flag
vote up 0 vote down

Using Java, using Apache Commons String Utils:

public boolean isPalindrome(String phrase) {
  phrase = phrase.toLowerCase().replaceAll("[^a-z]", "");
  return StringUtils.reverse(phrase).equals(phrase);
}
link|flag
vote up 0 vote down

If we're looking for numbers and simple words, many correct answers have been given.

However, if we're looking for what we generally see as palindromes in written language (e.g., "A dog, a panic, in a pagoda!"), the correct answer would be to iterate starting from both ends of the sentence, skipping non-alphanumeric characters individually, and returning false if any mismatches are found.

i = 0; j = length-1;

while( true ) {
  while( i < j && !is_alphanumeric( str[i] ) ) i++;
  while( i < j && !is_alphanumeric( str[j] ) ) j--;

  if( i >= j ) return true;

  if( tolower(string[i]) != tolower(string[j]) ) return false;
  i++; j--;
}


Of course, stripping out non-valid characters, reversing the resulting string and comparing it to the original one also works. It comes down to what type of language you're working on.

link|flag
1 2 next

Your Answer

Get an OpenID
or

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