How to check if the given string is palindrome? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T14:45:57Z http://stackoverflow.com/feeds/question/52002 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/52002/how-to-check-if-the-given-string-is-palindrome 23 How to check if the given string is palindrome? Prakash 2008-09-09T14:24:27Z 2009-07-12T04:45:12Z <p><strong>Definition:</strong></p> <p><em>A palindrome is a word, phrase, number or other sequence of units that has the property of reading the same in either direction</em></p> <p>How to check if the given string is a palindrome?</p> <p>This was one of the FAIQ [Frequently Asked Interview Question] a while ago but that mostly using C.</p> <p>Looking for solutions in any and all languages possible.</p> http://stackoverflow.com/questions/52002/how-to-check-if-the-given-string-is-palindrome/52013#52013 2 Answer by Ryan Ahearn for How to check if the given string is palindrome? Ryan Ahearn 2008-09-09T14:29:51Z 2008-09-09T14:51:22Z <pre><code>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()); } </code></pre> <p>Java version</p> http://stackoverflow.com/questions/52002/how-to-check-if-the-given-string-is-palindrome/52014#52014 30 Answer by Tnilsson for How to check if the given string is palindrome? Tnilsson 2008-09-09T14:29:58Z 2008-11-06T23:47:03Z <p>Language agnostic meta-code then...</p> <pre><code>rev = StringReverse(originalString) return ( rev == originalString ); </code></pre> http://stackoverflow.com/questions/52002/how-to-check-if-the-given-string-is-palindrome/52015#52015 2 Answer by Jared for How to check if the given string is palindrome? Jared 2008-09-09T14:30:30Z 2008-09-09T14:57:02Z <p>Here's my solution in c#</p> <pre><code>static bool isPalindrome(string s) { string allowedChars = "abcdefghijklmnopqrstuvwxyz"+ "1234567890ABCDEFGHIJKLMNOPQRSTUVWXYZ"; string compareString = String.Empty; string rev = string.Empty; for (int i = 0; i &lt;= s.Length - 1; i++) { char c = s[i]; if (allowedChars.IndexOf(c) &gt; -1) { compareString += c; } } for (int i = compareString.Length - 1; i &gt;= 0; i--) { char c = compareString[i]; rev += c; } return rev.Equals(compareString, StringComparison.CurrentCultureIgnoreCase); } </code></pre> http://stackoverflow.com/questions/52002/how-to-check-if-the-given-string-is-palindrome/52021#52021 4 Answer by gabr for How to check if the given string is palindrome? gabr 2008-09-09T14:33:44Z 2008-09-09T14:33:44Z <pre><code>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] &lt;&gt; s[j] then Exit; Dec(j); end; Result := true; end; </code></pre> http://stackoverflow.com/questions/52002/how-to-check-if-the-given-string-is-palindrome/52023#52023 10 Answer by Blair Conrad for How to check if the given string is palindrome? Blair Conrad 2008-09-09T14:34:32Z 2008-09-09T14:34:32Z <p>Unoptimized Python:</p> <pre><code>&gt;&gt;&gt; def is_palindrome(s): ... return s == s[::-1] </code></pre> http://stackoverflow.com/questions/52002/how-to-check-if-the-given-string-is-palindrome/52026#52026 8 Answer by ceejayoz for How to check if the given string is palindrome? ceejayoz 2008-09-09T14:34:55Z 2008-09-09T14:34:55Z <p>Remember, you'll want to strip out punctuation characters - spaces, commas, exclamation points, etc. - before processing.</p> http://stackoverflow.com/questions/52002/how-to-check-if-the-given-string-is-palindrome/52028#52028 6 Answer by Baltimark for How to check if the given string is palindrome? Baltimark 2008-09-09T14:35:10Z 2008-09-09T14:35:10Z <p>Here's a python way. Note: this isn't really that "pythonic" but it demonstrates the algorithm.</p> <pre><code>def IsPalindromeString(n): myLen = len(n) i = 0 while i &lt;= myLen/2: if n[i] != n[myLen-1-i]: return False i += 1 return True </code></pre> http://stackoverflow.com/questions/52002/how-to-check-if-the-given-string-is-palindrome/52031#52031 24 Answer by Paulius Maruška for How to check if the given string is palindrome? Paulius Maruška 2008-09-09T14:36:32Z 2008-09-09T14:41:58Z <p>Windows XP (might also work on 2000) or later BATCH script:</p> <pre><code>@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 </code></pre> http://stackoverflow.com/questions/52002/how-to-check-if-the-given-string-is-palindrome/52034#52034 10 Answer by aku for How to check if the given string is palindrome? aku 2008-09-09T14:37:04Z 2008-09-10T06:10:18Z <p>C#: LINQ</p> <pre><code>var str = "a b a"; var test = Enumerable.SequenceEqual(str.ToCharArray(), str.ToCharArray().Reverse()); </code></pre> http://stackoverflow.com/questions/52002/how-to-check-if-the-given-string-is-palindrome/52036#52036 1 Answer by Ryan Farley for How to check if the given string is palindrome? Ryan Farley 2008-09-09T14:37:38Z 2008-09-09T14:37:38Z <p>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#).</p> <pre><code>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"); } </code></pre> http://stackoverflow.com/questions/52002/how-to-check-if-the-given-string-is-palindrome/52038#52038 10 Answer by David Schmitt for How to check if the given string is palindrome? David Schmitt 2008-09-09T14:38:07Z 2008-11-06T09:44:54Z <p><strong>C#</strong> in-place algorithm. Any preprocessing, like case insensitivity or stripping of whitespace and punctuation should be done before passing to this function.</p> <pre><code>boolean IsPalindrome(string s) { for (int i = 0; i &lt; s.Length / 2; i++) { if (s[i] != s[s.Length - 1 - i]) return false; } return true; } </code></pre> <p><hr /></p> <p><strong>Edit:</strong> removed unnecessary "<code>+1</code>" in loop condition and spent the saved comparison on removing the redundant Length comparison. Thanks to the commenters!</p> http://stackoverflow.com/questions/52002/how-to-check-if-the-given-string-is-palindrome/52039#52039 3 Answer by xanadont for How to check if the given string is palindrome? xanadont 2008-09-09T14:38:26Z 2008-09-09T14:38:26Z <p>Using a good data structure usually helps impress the professor:</p> <p>Push half the chars onto a stack (Length / 2).<br /> Pop and compare each char until the first unmatch.<br /> If the stack has zero elements: palindrome.<br /> *in the case of a string with an odd Length, throw out the middle char.</p> http://stackoverflow.com/questions/52002/how-to-check-if-the-given-string-is-palindrome/52040#52040 3 Answer by swilliams for How to check if the given string is palindrome? swilliams 2008-09-09T14:39:02Z 2008-09-09T14:39:02Z <p>Here's my solution, without using a strrev. Written in C#, but it will work in any language that has a string length function.</p> <pre><code>private static bool Pal(string s) { for (int i = 0; i &lt; s.Length; i++) { if (s[i] != s[s.Length - 1 - i]) { return false; } } return true; } </code></pre> http://stackoverflow.com/questions/52002/how-to-check-if-the-given-string-is-palindrome/52041#52041 2 Answer by Kamikaze Mercenary for How to check if the given string is palindrome? Kamikaze Mercenary 2008-09-09T14:39:06Z 2008-09-09T15:12:14Z <p>This Java code should work inside a <strong>boolean</strong> method:</p> <p><strong>Note</strong>: 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.</p> <pre><code>private static boolean doPal(String test) { for(int i = 0; i &lt; test.length() / 2; i++) { if(test.charAt(i) != test.charAt(test.length() - 1 - i)) { return false; } } return true; } </code></pre> http://stackoverflow.com/questions/52002/how-to-check-if-the-given-string-is-palindrome/52048#52048 3 Answer by Jonathan for How to check if the given string is palindrome? Jonathan 2008-09-09T14:41:02Z 2008-09-09T14:41:02Z <p>Java solution:</p> <pre><code>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 &lt; (chars.length / 2); i++, j--) { if (chars[i] != chars[j]) { System.out.println("Not a palindrome!"); return; } } System.out.println("Found a palindrome!"); } </code></pre> <p>}</p> http://stackoverflow.com/questions/52002/how-to-check-if-the-given-string-is-palindrome/52051#52051 34 Answer by ConroyP for How to check if the given string is palindrome? ConroyP 2008-09-09T14:42:18Z 2008-12-16T14:37:10Z <p><strong>PHP sample</strong>:</p> <pre><code>$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); } </code></pre> <p>Removes any non-alphanumeric characters (spaces, commas, exclamation points, etc.) to allow for full sentences as above, as well as simple words.</p> http://stackoverflow.com/questions/52002/how-to-check-if-the-given-string-is-palindrome/52053#52053 2 Answer by Flame for How to check if the given string is palindrome? Flame 2008-09-09T14:42:58Z 2008-11-04T19:03:14Z <p>EDIT: from the comments:</p> <pre><code>bool palindrome(std::string const&amp; s) { return std::equal(s.begin(), s.end(), s.rbegin()); } </code></pre> <p><hr /></p> <p>The c++ way.</p> <p>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.</p> <pre><code>#include &lt;string&gt; #include &lt;iostream&gt; 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 &amp;&amp; front!= foo.end() &amp;&amp; back != foo.rend(); ++front, ++back ) { if(*front != *back) is_palindrome = false; } return is_palindrome; } int main() { string a = "hi there", b = "laval"; cout &lt;&lt; "String a: \"" &lt;&lt; a &lt;&lt; "\" is " &lt;&lt; ((palindrome(a))? "" : "not ") &lt;&lt; "a palindrome." &lt;&lt;endl; cout &lt;&lt; "String b: \"" &lt;&lt; b &lt;&lt; "\" is " &lt;&lt; ((palindrome(b))? "" : "not ") &lt;&lt; "a palindrome." &lt;&lt;endl; } </code></pre> http://stackoverflow.com/questions/52002/how-to-check-if-the-given-string-is-palindrome/52057#52057 0 Answer by JosephStyons for How to check if the given string is palindrome? JosephStyons 2008-09-09T14:44:43Z 2008-09-09T15:11:44Z <p>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.</p> <p><em>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.</em></p> <pre><code>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] &lt;&gt; 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; </code></pre> <p>And here is the same thing, in C#, except that I've left it with multiple exit points, which I don't like.</p> <pre><code>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 &lt; halfway; ++i) { if (txt.Substring(i,1) != txt.Substring(len - i - 1,1)) { return false; } //if } //for return true; } </code></pre> http://stackoverflow.com/questions/52002/how-to-check-if-the-given-string-is-palindrome/52063#52063 0 Answer by Keith for How to check if the given string is palindrome? Keith 2008-09-09T14:49:25Z 2008-09-10T06:38:42Z <p>C#3 - This returns false as soon as a char counted from the beginning fails to match its equivalent at the end:</p> <pre><code>static bool IsPalindrome(this string input) { char[] letters = input.ToUpper().ToCharArray(); int i = 0; while( i &lt; letters.Length / 2 ) if( letters[i] != letters[letters.Length - ++i] ) return false; return true; } </code></pre> http://stackoverflow.com/questions/52002/how-to-check-if-the-given-string-is-palindrome/52064#52064 2 Answer by Dave Webb for How to check if the given string is palindrome? Dave Webb 2008-09-09T14:49:42Z 2008-11-04T16:57:12Z <p>Here's a Python version that deals with different cases, punctuation and whitespace.</p> <pre><code>import string def is_palindrome(palindrome): letters = palindrome.translate(string.maketrans("",""), string.whitespace + string.punctuation).lower() return letters == letters[::-1] </code></pre> <p><strong>Edit:</strong> Shamelessly stole from <a href="http://beta.stackoverflow.com/questions/52002/how-to-check-if-the-given-string-is-palindrome#52023" rel="nofollow">Blair Conrad's</a> neater answer to remove the slightly clumsy list processing from my previous version. </p> http://stackoverflow.com/questions/52002/how-to-check-if-the-given-string-is-palindrome/52138#52138 0 Answer by Sébastien RoccaSerra for How to check if the given string is palindrome? Sébastien RoccaSerra 2008-09-09T15:19:38Z 2008-09-16T20:22:19Z <p>Three versions in Smalltalk, from dumbest to correct.</p> <p><hr /></p> <p>In Smalltalk, <code>=</code> is the comparison operator:</p> <pre><code>isPalindrome: aString "Dumbest." ^ aString reverse = aString </code></pre> <p><hr /></p> <p>The message <code>#translateToLowercase</code> returns the string as lowercase:</p> <pre><code>isPalindrome: aString "Case insensitive" |lowercase| lowercase := aString translateToLowercase. ^ lowercase reverse = lowercase </code></pre> <p><hr /></p> <p>And in Smalltalk, strings are part of the <code>Collection</code> framework, you can use the message <code>#select:thenCollect:</code>, so here's the last version:</p> <pre><code>isPalindrome: aString "Case insensitive and keeping only alphabetic chars (blanks &amp; punctuation insensitive)." |lowercaseLetters| lowercaseLetters := aString select: [:char | char isAlphabetic] thenCollect: [:char | char asLowercase]. ^ lowercaseLetters reverse = lowercaseLetters </code></pre> http://stackoverflow.com/questions/52002/how-to-check-if-the-given-string-is-palindrome/52153#52153 2 Answer by Leon Timmermans for How to check if the given string is palindrome? Leon Timmermans 2008-09-09T15:27:03Z 2008-09-09T16:00:58Z <p>Another C++ one. Optimized for speed and size.</p> <p><code><pre>bool is_palindrome(const std::string&amp; candidate) { for(std::string::const_iterator left = candidate.begin(), right = candidate.end(); left &lt; --right ; ++left) if (*left != *right) return false; return true; }</pre></code></p> http://stackoverflow.com/questions/52002/how-to-check-if-the-given-string-is-palindrome/52328#52328 0 Answer by MegaHAL for How to check if the given string is palindrome? MegaHAL 2008-09-09T16:47:15Z 2008-09-09T16:47:15Z <p>In Ruby, converting to lowercase and stripping everything not alphabetic:</p> <pre><code>def isPalindrome( string ) ( test = string.downcase.gsub( /[^a-z]/, '' ) ) == test.reverse end </code></pre> <p>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:</p> <pre><code>#include &lt;stdio.h&gt; int isPalindrome( char * string ) { char * i = string; char * p = string; while ( *++i ); while ( i &gt; p &amp;&amp; *p++ == *--i ); return i &lt;= p &amp;&amp; *i++ == *--p; } int main( int argc, char **argv ) { if ( argc != 2 ) { fprintf( stderr, "Usage: %s &lt;word&gt;\n", argv[0] ); return -1; } fprintf( stdout, "%s\n", isPalindrome( argv[1] ) ? "yes" : "no" ); return 0; } </code></pre> <p>Well, that was fun - do I get the job ;^)</p> http://stackoverflow.com/questions/52002/how-to-check-if-the-given-string-is-palindrome/52660#52660 7 Answer by Wedge for How to check if the given string is palindrome? Wedge 2008-09-09T19:14:26Z 2008-09-13T19:10:20Z <p>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.</p> <p>A few good example test cases are:</p> <p>"A man, a plan, a canal, Panama."</p> <p>"A Toyota's a Toyota."</p> <p>"A"</p> <p>""</p> <p>As well as some non-palindromes.</p> <p>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):</p> <pre><code>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 &gt; leftIndex) { if (alphaOnlyCandidate[leftIndex] != alphaOnlyCandidate[rightIndex]) { return false; } leftIndex++; rightIndex--; } return true; } </code></pre> http://stackoverflow.com/questions/52002/how-to-check-if-the-given-string-is-palindrome/52688#52688 6 Answer by mweerden for How to check if the given string is palindrome? mweerden 2008-09-09T19:26:43Z 2008-09-09T19:26:43Z <p>How about a (non-trivial) solution that itself is also a palindrome?</p> http://stackoverflow.com/questions/52002/how-to-check-if-the-given-string-is-palindrome/52749#52749 8 Answer by Brian Warshaw for How to check if the given string is palindrome? Brian Warshaw 2008-09-09T19:52:33Z 2008-09-09T19:52:33Z <p>A more Ruby-style rewrite of <a href="http://beta.stackoverflow.com/questions/52002/how-to-check-if-the-given-string-is-palindrome#52328" rel="nofollow">Hal's Ruby version</a>:</p> <pre><code>class String def palindrome? (test = gsub(/[^A-Za-z]/, '').downcase) == test.reverse end end </code></pre> <p>Now you can call <code>palindrome?</code> on any string.</p> http://stackoverflow.com/questions/52002/how-to-check-if-the-given-string-is-palindrome/53009#53009 8 Answer by Hostile for How to check if the given string is palindrome? Hostile 2008-09-09T22:01:54Z 2008-09-12T21:01:01Z <p>C in the house. (not sure if you didn't want a C example here)</p> <pre><code>bool IsPalindrome(char *s) { int i,d; int length = strlen(s); char cf, cb; for(i=0, d=length-1 ; i &lt; length &amp;&amp; d &gt;= 0 ; i++ , d--) { while(cf= toupper(s[i]), (cf &lt; 'A' || cf &gt;'Z') &amp;&amp; i &lt; length-1)i++; while(cb= toupper(s[d]), (cb &lt; 'A' || cb &gt;'Z') &amp;&amp; d &gt; 0 )d--; if(cf != cb &amp;&amp; cf &gt;= 'A' &amp;&amp; cf &lt;= 'Z' &amp;&amp; cb &gt;= 'A' &amp;&amp; cb &lt;='Z') return false; } return true; } </code></pre> <p>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.</p> <p>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.</p> http://stackoverflow.com/questions/52002/how-to-check-if-the-given-string-is-palindrome/53055#53055 1 Answer by Vertigo for How to check if the given string is palindrome? Vertigo 2008-09-09T22:35:29Z 2008-11-04T19:37:47Z <p>Perl:</p> <pre><code>sub is_palindrome($) { $s = lc(shift); # ignore case $s =~ s/\W+//g; # consider only letters, digits, and '_' $s eq reverse $s; } </code></pre> <p>It ignores case and strips non-alphanumeric characters (it locale- and unicode- neutral).</p> http://stackoverflow.com/questions/52002/how-to-check-if-the-given-string-is-palindrome/53148#53148 0 Answer by SCdF for How to check if the given string is palindrome? SCdF 2008-09-09T23:34:51Z 2008-09-09T23:44:12Z <p>Using Java, using <a href="http://commons.apache.org/" rel="nofollow">Apache Commons</a> String Utils:</p> <pre><code>public boolean isPalindrome(String phrase) { phrase = phrase.toLowerCase().replaceAll("[^a-z]", ""); return StringUtils.reverse(phrase).equals(phrase); } </code></pre> http://stackoverflow.com/questions/52002/how-to-check-if-the-given-string-is-palindrome/53215#53215 0 Answer by Pedro for How to check if the given string is palindrome? Pedro 2008-09-10T00:22:50Z 2008-09-10T20:37:39Z <p>If we're looking for numbers and simple words, many correct answers have been given.</p> <p>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, <em>skipping non-alphanumeric characters individually</em>, and returning false if any mismatches are found.</p> <pre><code>i = 0; j = length-1; while( true ) { while( i &lt; j &amp;&amp; !is_alphanumeric( str[i] ) ) i++; while( i &lt; j &amp;&amp; !is_alphanumeric( str[j] ) ) j--; if( i &gt;= j ) return true; if( tolower(string[i]) != tolower(string[j]) ) return false; i++; j--; } <p></code></pre></p> <p>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.</p> http://stackoverflow.com/questions/52002/how-to-check-if-the-given-string-is-palindrome/53505#53505 1 Answer by tj9991 for How to check if the given string is palindrome? tj9991 2008-09-10T06:08:15Z 2008-09-10T06:08:15Z <p>I had to do this for a programming challenge, here's a snippet of my Haskell:</p> <pre><code>isPalindrome :: String -&gt; Bool isPalindrome n = (n == reverse n) </code></pre> http://stackoverflow.com/questions/52002/how-to-check-if-the-given-string-is-palindrome/56204#56204 2 Answer by Will Boyce for How to check if the given string is palindrome? Will Boyce 2008-09-11T10:14:27Z 2008-09-11T10:35:19Z <p>Python:</p> <pre><code>if s == s[::-1]: return True </code></pre> <p>Java:</p> <pre><code>if (s.Equals(s.Reverse())) { return true; } </code></pre> <p>PHP:</p> <pre><code>if (s == strrev(s)) return true; </code></pre> <p>Perl:</p> <pre><code>if (s == reverse(s)) { return true; } </code></pre> <p>Erlang:</p> <pre><code>string:equal(S, lists:reverse(S)). </code></pre> http://stackoverflow.com/questions/52002/how-to-check-if-the-given-string-is-palindrome/58575#58575 0 Answer by Prakash for How to check if the given string is palindrome? Prakash 2008-09-12T09:47:43Z 2008-09-12T09:47:43Z <p>OCaml</p> <blockquote> <pre><code>let rec palindrome s = s = (tailrev s) </code></pre> </blockquote> <p><a href="http://www.cis.upenn.edu/~lhuang3/cse399-python/handouts/ocaml.ppt" rel="nofollow">source</a></p> http://stackoverflow.com/questions/52002/how-to-check-if-the-given-string-is-palindrome/59079#59079 0 Answer by Prakash for How to check if the given string is palindrome? Prakash 2008-09-12T14:05:03Z 2008-09-12T14:05:03Z <p>I'm surprised there is no VB solutions yet :)</p> http://stackoverflow.com/questions/52002/how-to-check-if-the-given-string-is-palindrome/59364#59364 2 Answer by Alexander Stolz for How to check if the given string is palindrome? Alexander Stolz 2008-09-12T15:45:58Z 2008-09-12T15:45:58Z <p><strong>Lisp:</strong></p> <pre><code>(defun palindrome(x) (string= x (reverse x))) </code></pre> http://stackoverflow.com/questions/52002/how-to-check-if-the-given-string-is-palindrome/63366#63366 0 Answer by LepardUK for How to check if the given string is palindrome? LepardUK 2008-09-15T14:23:24Z 2008-09-15T14:23:24Z <p>boolean IsPalindrome(string s) { return s = s.Reverse(); }</p> http://stackoverflow.com/questions/52002/how-to-check-if-the-given-string-is-palindrome/68900#68900 1 Answer by Michael Carman for How to check if the given string is palindrome? Michael Carman 2008-09-16T02:29:55Z 2008-09-16T02:29:55Z <p>Perl:</p> <pre><code>sub is_palindrome { my $s = lc shift; # normalize case $s =~ s/\W//g; # strip non-word characters return $s eq reverse $s; } </code></pre> http://stackoverflow.com/questions/52002/how-to-check-if-the-given-string-is-palindrome/76667#76667 0 Answer by Florian for How to check if the given string is palindrome? Florian 2008-09-16T20:31:04Z 2008-09-16T20:31:04Z <p>Damn. Didn't see someone already posted the trivial haskell-version :( Sorry.</p> http://stackoverflow.com/questions/52002/how-to-check-if-the-given-string-is-palindrome/77508#77508 0 Answer by Skizz for How to check if the given string is palindrome? Skizz 2008-09-16T21:46:55Z 2008-09-16T21:46:55Z <p>An obfuscated C version:</p> <pre><code>int IsPalindrome (char *s) { char*a,*b,c=0; for(a=b=s;a&lt;=b;c=(c?c==1?c=(*a&amp;~32)-65&gt;25u?*++a,1:2:c==2?(*--b&amp;~32)-65&lt;26u?3:2:c==3?(*b-65&amp;~32)-(*a-65&amp;~32)?*(b=s=0,a),4:*++a,1:0:*++b?0:1)); return s!=0; } </code></pre> <p>Skizz</p> http://stackoverflow.com/questions/52002/how-to-check-if-the-given-string-is-palindrome/77620#77620 2 Answer by paercebal for How to check if the given string is palindrome? paercebal 2008-09-16T21:56:53Z 2008-09-16T21:56:53Z <p>Note that in the above C++ solutions, there was some problems.</p> <p>One solution was inefficient because it passed an std::string by copy, and because it iterated over all the chars, instead of comparing only half the chars. Then, even when discovering the string was not a palindrome, it continued the loop, waiting its end before reporting "false".</p> <p>The other was better, with a very small function, whose problem was that it was not able to test anything else than std::string. In C++, it is easy to extend an algorithm to a whole bunch of similar objects. By templating its std::string into "T", it would have worked on both std::string, std::wstring, std::vector and std::deque. But without major modification because of the use of the operator &lt;, the std::list was out of its scope.</p> <p>My own solutions try to show that a C++ solution won't stop at working on the exact current type, but will strive to work an <em>anything</em> that behaves the same way, no matter the type. For example, I could apply my palindrome tests on std::string, on vector of int or on list of "Anything" as long as Anything was comparable through its operator = (build in types, as well as classes).</p> <p>Note that the template can even be extended with an optional type that can be used to compare the data. For example, if you want to compare in a case insensitive way, or even compare similar characters (like è, é, ë, ê and e).</p> <p>Like king Leonidas would have said: <em>"Templates ? This is C++ !!!"</em></p> <p>So, in C++, there are at least 3 major ways to do it, each one leading to the other:</p> <h2>Solution A: In a c-like way</h2> <p>The problem is that until C++0X, we can't consider the std::string array of chars as contiguous, so we must "cheat" and retrieve the c_str() property. As we are using it in a read-only fashion, it should be ok...</p> <p><hr /></p> <pre><code>bool isPalindromeA(const std::string &amp; p_strText) { if(p_strText.length() &lt; 2) return true ; const char * pStart = p_strText.c_str() ; const char * pEnd = pStart + p_strText.length() - 1 ; for(; pStart &lt; pEnd; ++pStart, --pEnd) { if(*pStart != *pEnd) { return false ; } } return true ; } </code></pre> <p><hr /></p> <h2>Solution B: A more "C++" version</h2> <p>Now, we'll try to apply the same solution, but to any C++ container with random access to its items through operator []. For example, any std::basic_string, std::vector, std::deque, etc. Operator [] is constant access for those containers, so we won't lose undue speed.</p> <p><hr /></p> <pre><code>template &lt;typename T&gt; bool isPalindromeB(const T &amp; p_aText) { if(p_aText.empty()) return true ; typename T::size_type iStart = 0 ; typename T::size_type iEnd = p_aText.size() - 1 ; for(; iStart &lt; iEnd; ++iStart, --iEnd) { if(p_aText[iStart] != p_aText[iEnd]) { return false ; } } return true ; } </code></pre> <p><hr /></p> <h2>Solution C: Template powah !</h2> <p>It will work with almost any unordered STL-like container with bidirectional iterators For example, any std::basic_string, std::vector, std::deque, std::list, etc. So, this function can be applied on all STL-like containers with the following conditions: 1 - T is a container with bidirectional iterator 2 - T's iterator points to a comparable type (through operator =)</p> <p><hr /></p> <pre><code>template &lt;typename T&gt; bool isPalindromeC(const T &amp; p_aText) { if(p_aText.empty()) return true ; typename T::const_iterator pStart = p_aText.begin() ; typename T::const_iterator pEnd = p_aText.end() ; --pEnd ; while(true) { if(*pStart != *pEnd) { return false ; } if((pStart == pEnd) || (++pStart == pEnd)) { return true ; } --pEnd ; } } </code></pre> <p><hr /></p> http://stackoverflow.com/questions/52002/how-to-check-if-the-given-string-is-palindrome/228706#228706 0 Answer by Anon for How to check if the given string is palindrome? Anon 2008-10-23T06:16:13Z 2008-10-23T06:16:13Z <p>c++:</p> <pre><code>bool is_palindrome(const string &amp;s) { return equal( s.begin(), s.begin()+s.length()/2, s.rbegin()); } </code></pre> http://stackoverflow.com/questions/52002/how-to-check-if-the-given-string-is-palindrome/228707#228707 0 Answer by Shabbyrobe for How to check if the given string is palindrome? Shabbyrobe 2008-10-23T06:16:55Z 2008-11-06T23:43:29Z <p>There isn't a <em>single</em> solution on here which takes into account that a palindrome can also be based on word units, not just character units.</p> <p>Which means that none of the given solutions return true for palindromes like "Girl, bathing on Bikini, eyeing boy, sees boy eyeing bikini on bathing girl".</p> <p>Here's a hacked together version in C#. I'm sure it doesn't need the regexes, but it does work just as well with the above bikini palindrome as it does with "A man, a plan, a canal-Panama!".</p> <pre><code> static bool IsPalindrome(string text) { bool isPalindrome = IsCharacterPalindrome(text); if (!isPalindrome) { isPalindrome = IsPhrasePalindrome(text); } return isPalindrome; } static bool IsCharacterPalindrome(string text) { String clean = Regex.Replace(text.ToLower(), "[^A-z0-9]", String.Empty, RegexOptions.Compiled); bool isPalindrome = false; if (!String.IsNullOrEmpty(clean) &amp;&amp; clean.Length &gt; 1) { isPalindrome = true; for (int i = 0, count = clean.Length / 2 + 1; i &lt; count; i++) { if (clean[i] != clean[clean.Length - 1 - i]) { isPalindrome = false; break; } } } return isPalindrome; } static bool IsPhrasePalindrome(string text) { bool isPalindrome = false; String clean = Regex.Replace(text.ToLower(), @"[^A-z0-9\s]", " ", RegexOptions.Compiled).Trim(); String[] words = Regex.Split(clean, @"\s+"); if (words.Length &gt; 1) { isPalindrome = true; for (int i = 0, count = words.Length / 2 + 1; i &lt; count; i++) { if (words[i] != words[words.Length - 1 - i]) { isPalindrome = false; break; } } } return isPalindrome; } </code></pre> http://stackoverflow.com/questions/52002/how-to-check-if-the-given-string-is-palindrome/263449#263449 0 Answer by Hugo Chavez for How to check if the given string is palindrome? Hugo Chavez 2008-11-04T21:05:13Z 2008-11-04T21:05:13Z <p>I haven't seen any recursion yet, so here goes...</p> <p>import re</p> <p>r = re.compile("[^0-9a-zA-Z]")</p> <p>def is_pal(s):</p> <pre><code> def inner_pal(s): if len(s) == 0: return True elif s[0] == s[-1]: return inner_pal(s[1:-1]) else: return False r = re.compile("[^0-9a-zA-Z]") return inner_pal(r.sub("", s).lower()) </code></pre> http://stackoverflow.com/questions/52002/how-to-check-if-the-given-string-is-palindrome/277721#277721 0 Answer by anukool_j for How to check if the given string is palindrome? anukool_j 2008-11-10T12:05:24Z 2008-11-10T12:05:24Z <p>This is all good, but is there a way to do better algorithmically? I was once asked in a interview to recognize a palindrome in linear time and <em>constant space</em>.</p> <p>I couldn't think of anything then and I still can't. </p> <p>(If it helps, I asked the interviewer what the answer was. He said you can construct a pair of hash functions such that they hash a given string to the same value if and only if that string is a palindrome. I have no idea how you would actually make this pair of functions.)</p> http://stackoverflow.com/questions/52002/how-to-check-if-the-given-string-is-palindrome/277727#277727 0 Answer by Johannes Schaub - litb for How to check if the given string is palindrome? Johannes Schaub - litb 2008-11-10T12:09:11Z 2008-11-11T06:54:45Z <h2>C++</h2> <pre><code>std::string a = "god"; std::string b = "lol"; std::cout &lt;&lt; (std::string(a.rbegin(), a.rend()) == a) &lt;&lt; " " &lt;&lt; (std::string(b.rbegin(), b.rend()) == b); </code></pre> <h2>Bash</h2> <pre><code>function ispalin { [ "$( echo -n $1 | tac -rs . )" = "$1" ]; } echo "$(ispalin god &amp;&amp; echo yes || echo no), $(ispalin lol &amp;&amp; echo yes || echo no)" </code></pre> <h2>Gnu Awk</h2> <pre><code>/* obvious solution */ function ispalin(cand, i) { for(i=0; i&lt;length(cand)/2; i++) if(substr(cand, length(cand)-i, 1) != substr(cand, i+1, 1)) return 0; return 1; } /* not so obvious solution. cough cough */ { orig = $0; while($0) { stuff = stuff gensub(/^.*(.)$/, "\\1", 1); $0 = gensub(/^(.*).$/, "\\1", 1); } print (stuff == orig); } </code></pre> <h2>Haskell</h2> <p>Some brain dead way doing it in Haskell</p> <pre><code>ispalin :: [Char] -&gt; Bool ispalin a = a == (let xi (y:my) = (xi my) ++ [y]; xi [] = [] in \x -&gt; xi x) a </code></pre> <h2>Plain English</h2> <p><code>"Just reverse the string and if it is the same as before, it's a palindrome"</code></p> http://stackoverflow.com/questions/52002/how-to-check-if-the-given-string-is-palindrome/278003#278003 0 Answer by reefnet_alex for How to check if the given string is palindrome? reefnet_alex 2008-11-10T14:35:51Z 2008-11-10T14:35:51Z <p>The solutions which strip out any chars that don't fall between A-Z or a-z are very English centric. Letters with diacritics such as à or é would be stripped! </p> <p>According to Wikipedia: </p> <blockquote> <p>The treatment of diacritics varies. In languages such as Czech and Spanish, letters with diacritics or accents (except tildes) are not given a separate place in the alphabet, and thus preserve the palindrome whether or not the repeated letter has an ornamentation. However, in Swedish and other Nordic languages, A and A with a ring (å) are distinct letters and must be mirrored exactly to be considered a true palindrome.</p> </blockquote> <p>So to cover many other languages it would be better to use collation to convert diacritical marks to their equivalent non diacritic or leave alone as appropriate and then strip whitespace and punctuation only before comparing.</p> http://stackoverflow.com/questions/52002/how-to-check-if-the-given-string-is-palindrome/371523#371523 0 Answer by Jason Lepack for How to check if the given string is palindrome? Jason Lepack 2008-12-16T14:44:13Z 2008-12-16T14:44:13Z <pre><code>set l = index of left most character in word set r = index of right most character in word loop while(l &lt; r) begin if letter at l does not equal letter at r word is not palindrome else increase l and decrease r end word is palindrome </code></pre> http://stackoverflow.com/questions/52002/how-to-check-if-the-given-string-is-palindrome/430317#430317 0 Answer by Vadim Ferderer for How to check if the given string is palindrome? Vadim Ferderer 2009-01-10T01:15:14Z 2009-01-10T16:00:31Z <p>Efficient C++ version:</p> <pre><code>template&lt; typename Iterator &gt; bool is_palindrome( Iterator first, Iterator last, std::locale const&amp; loc = std::locale("") ) { if ( first == last ) return true; for( --last; first &lt; last; ++first, --last ) { while( ! std::isalnum( *first, loc ) &amp;&amp; first &lt; last ) ++first; while( ! std::isalnum( *last, loc ) &amp;&amp; first &lt; last ) --last; if ( std::tolower( *first, loc ) != std::tolower( *last, loc ) ) return false; } return true; } </code></pre> http://stackoverflow.com/questions/52002/how-to-check-if-the-given-string-is-palindrome/430363#430363 0 Answer by Dave Sherohman for How to check if the given string is palindrome? Dave Sherohman 2009-01-10T01:47:01Z 2009-01-10T01:47:01Z <p>Here are two more Perl versions, neither of which uses <code>reverse</code>. Both use the basic algorithm of comparing the first character of the string to the last, then discarding them and repeating the test, but they use different methods of getting at the individual characters (the first peels them off one at a time with a regex, the second <code>split</code>s the string into an array of characters).</p> <pre><code>#!/usr/bin/perl my @strings = ("A man, a plan, a canal, Panama.", "A Toyota's a Toyota.", "A", "", "As well as some non-palindromes."); for my $string (@strings) { print is_palindrome($string) ? "'$string' is a palindrome (1)\n" : "'$string' is not a palindrome (1)\n"; print is_palindrome2($string) ? "'$string' is a palindrome (2)\n" : "'$string' is not a palindrome (2)\n"; } sub is_palindrome { my $str = lc shift; $str =~ tr/a-z//cd; while ($str =~ s/^(.)(.*)(.)$/\2/) { return unless $1 eq $3; } return 1; } sub is_palindrome2 { my $str = lc shift; $str =~ tr/a-z//cd; my @chars = split '', $str; while (@chars &amp;&amp; shift @chars eq pop @chars) {}; return scalar @chars &lt;= 1; } </code></pre> http://stackoverflow.com/questions/52002/how-to-check-if-the-given-string-is-palindrome/430393#430393 0 Answer by bnkdev for How to check if the given string is palindrome? bnkdev 2009-01-10T02:08:27Z 2009-01-10T02:14:15Z <p>Easy mode in C#, only using Base Class Libraries</p> <p>Edit: just saw someone did Array.Reverse also </p> <pre><code>public bool IsPalindrome(string s) { if (String.IsNullOrEmpty(s)) { return false; } else { char[] t = s.ToCharArray(); Array.Reverse(t); string u = new string(t); if (s.ToLower() == u.ToLower()) { return true; } } return false; } </code></pre> http://stackoverflow.com/questions/52002/how-to-check-if-the-given-string-is-palindrome/430444#430444 0 Answer by BBetances for How to check if the given string is palindrome? BBetances 2009-01-10T02:46:45Z 2009-01-10T02:46:45Z <p>Here's another for C# that I used when doing a sample server control. It can be found in the book ASP.NET 3.5 Step by Step (MS Press). It's two methods, one to strip non-alphanumerics, and another to check for a palindrome.</p> <pre><code>protected string StripNonAlphanumerics(string str) { string strStripped = (String)str.Clone(); if (str != null) { char[] rgc = strStripped.ToCharArray(); int i = 0; foreach (char c in rgc) { if (char.IsLetterOrDigit(c)) { i++; } else { strStripped = strStripped.Remove(i, 1); } } } return strStripped; } protected bool CheckForPalindrome() { if (this.Text != null) { String strControlText = this.Text; String strTextToUpper = null; strTextToUpper = Text.ToUpper(); strControlText = this.StripNonAlphanumerics(strTextToUpper); char[] rgcReverse = strControlText.ToCharArray(); Array.Reverse(rgcReverse); String strReverse = new string(rgcReverse); if (strControlText == strReverse) { return true; } else { return false; } } else { return false; } } </code></pre> http://stackoverflow.com/questions/52002/how-to-check-if-the-given-string-is-palindrome/430483#430483 0 Answer by hughdbrown for How to check if the given string is palindrome? hughdbrown 2009-01-10T03:07:59Z 2009-01-10T03:07:59Z <p>Const-correct C/C++ pointer solution. Minimal operations in loop.</p> <pre><code>int IsPalindrome (const char *str) { const unsigned len = strlen(str); const char *end = &amp;str[len-1]; while (str &lt; end) if (*str++ != *end--) return 0; return 1; } </code></pre> http://stackoverflow.com/questions/52002/how-to-check-if-the-given-string-is-palindrome/659809#659809 1 Answer by Ascalonian for How to check if the given string is palindrome? Ascalonian 2009-03-18T19:40:55Z 2009-03-18T19:40:55Z <p>A simple Java solution:</p> <pre><code>public boolean isPalindrome(String testString) { StringBuffer sb = new StringBuffer(testString); String reverseString = sb.reverse().toString(); if(testString.equalsIgnoreCase(reverseString)) { return true; else { return false; } } </code></pre> http://stackoverflow.com/questions/52002/how-to-check-if-the-given-string-is-palindrome/760615#760615 0 Answer by armahg for How to check if the given string is palindrome? armahg 2009-04-17T14:24:50Z 2009-04-17T14:24:50Z <p>How come no one has posted a recursive solution yet? hmmm ....</p> http://stackoverflow.com/questions/52002/how-to-check-if-the-given-string-is-palindrome/1039466#1039466 0 Answer by patjbs for How to check if the given string is palindrome? patjbs 2009-06-24T16:31:53Z 2009-06-24T16:31:53Z <p>My 2c. Avoids overhead of full string reversal everytime, taking advantage of shortcircuiting to return as soon as the nature of the string is determined. Yes, you should condition your string first, but IMO that's the job of another function.</p> <p><strong>In C#</strong></p> <pre><code> /// &lt;summary&gt; /// Tests if a string is a palindrome /// &lt;/summary&gt; public static bool IsPalindrome(this String str) { if (str.Length == 0) return false; int index = 0; while (index &lt; str.Length / 2) if (str[index] != str[str.Length - ++index]) return false; return true; } </code></pre> http://stackoverflow.com/questions/52002/how-to-check-if-the-given-string-is-palindrome/1039549#1039549 1 Answer by Matchu for How to check if the given string is palindrome? Matchu 2009-06-24T16:44:02Z 2009-06-24T16:44:02Z <h2>Ruby:</h2> <pre><code>class String def is_palindrome? letters_only = gsub(/\W/,'').downcase letters_only == letters_only.reverse end end puts 'abc'.is_palindrome? # =&gt; false puts 'aba'.is_palindrome? # =&gt; true puts "Madam, I'm Adam.".is_palindrome? # =&gt; true </code></pre> http://stackoverflow.com/questions/52002/how-to-check-if-the-given-string-is-palindrome/1078441#1078441 0 Answer by Alexander Stolz for How to check if the given string is palindrome? Alexander Stolz 2009-07-03T08:53:44Z 2009-07-03T08:53:44Z <p><strong>Scala</strong></p> <pre><code>def pal(s:String) = Symbol(s) equals Symbol(s.reverse) </code></pre> http://stackoverflow.com/questions/52002/how-to-check-if-the-given-string-is-palindrome/1115333#1115333 1 Answer by AlejandroR for How to check if the given string is palindrome? AlejandroR 2009-07-12T04:45:12Z 2009-07-12T04:45:12Z <blockquote> <p><strong>Prolog</strong></p> </blockquote> <pre><code>palindrome(B, R) :- palindrome(B, R, []). palindrome([], R, R). palindrome([X|B], [X|R], T) :- palindrome(B, R, [X|T]). </code></pre>