How to check if the given string is palindrome? - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T14:45:57Zhttp://stackoverflow.com/feeds/question/52002http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/52002/how-to-check-if-the-given-string-is-palindrome23How to check if the given string is palindrome?Prakash2008-09-09T14:24:27Z2009-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#520132Answer by Ryan Ahearn for How to check if the given string is palindrome?Ryan Ahearn2008-09-09T14:29:51Z2008-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#5201430Answer by Tnilsson for How to check if the given string is palindrome?Tnilsson2008-09-09T14:29:58Z2008-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#520152Answer by Jared for How to check if the given string is palindrome?Jared2008-09-09T14:30:30Z2008-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 <= 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);
}
</code></pre>
http://stackoverflow.com/questions/52002/how-to-check-if-the-given-string-is-palindrome/52021#520214Answer by gabr for How to check if the given string is palindrome?gabr2008-09-09T14:33:44Z2008-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] <> 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#5202310Answer by Blair Conrad for How to check if the given string is palindrome?Blair Conrad2008-09-09T14:34:32Z2008-09-09T14:34:32Z<p>Unoptimized Python:</p>
<pre><code>>>> 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#520268Answer by ceejayoz for How to check if the given string is palindrome?ceejayoz2008-09-09T14:34:55Z2008-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#520286Answer by Baltimark for How to check if the given string is palindrome?Baltimark2008-09-09T14:35:10Z2008-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 <= 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#5203124Answer by Paulius Maruška for How to check if the given string is palindrome?Paulius Maruška2008-09-09T14:36:32Z2008-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#5203410Answer by aku for How to check if the given string is palindrome?aku2008-09-09T14:37:04Z2008-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#520361Answer by Ryan Farley for How to check if the given string is palindrome?Ryan Farley2008-09-09T14:37:38Z2008-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#5203810Answer by David Schmitt for How to check if the given string is palindrome?David Schmitt2008-09-09T14:38:07Z2008-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 < 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#520393Answer by xanadont for How to check if the given string is palindrome?xanadont2008-09-09T14:38:26Z2008-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#520403Answer by swilliams for How to check if the given string is palindrome?swilliams2008-09-09T14:39:02Z2008-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 < 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#520412Answer by Kamikaze Mercenary for How to check if the given string is palindrome?Kamikaze Mercenary2008-09-09T14:39:06Z2008-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 < 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#520483Answer by Jonathan for How to check if the given string is palindrome?Jonathan2008-09-09T14:41:02Z2008-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 < (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#5205134Answer by ConroyP for How to check if the given string is palindrome?ConroyP2008-09-09T14:42:18Z2008-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#520532Answer by Flame for How to check if the given string is palindrome?Flame2008-09-09T14:42:58Z2008-11-04T19:03:14Z<p>EDIT: from the comments:</p>
<pre><code>bool palindrome(std::string const& 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 <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;
}
</code></pre>
http://stackoverflow.com/questions/52002/how-to-check-if-the-given-string-is-palindrome/52057#520570Answer by JosephStyons for How to check if the given string is palindrome?JosephStyons2008-09-09T14:44:43Z2008-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] <> 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 < 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#520630Answer by Keith for How to check if the given string is palindrome?Keith2008-09-09T14:49:25Z2008-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 < 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#520642Answer by Dave Webb for How to check if the given string is palindrome?Dave Webb2008-09-09T14:49:42Z2008-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#521380Answer by Sébastien RoccaSerra for How to check if the given string is palindrome?Sébastien RoccaSerra2008-09-09T15:19:38Z2008-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 & 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#521532Answer by Leon Timmermans for How to check if the given string is palindrome?Leon Timmermans2008-09-09T15:27:03Z2008-09-09T16:00:58Z<p>Another C++ one. Optimized for speed and size.</p>
<p><code><pre>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;
}</pre></code></p>
http://stackoverflow.com/questions/52002/how-to-check-if-the-given-string-is-palindrome/52328#523280Answer by MegaHAL for How to check if the given string is palindrome?MegaHAL2008-09-09T16:47:15Z2008-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 <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;
}
</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#526607Answer by Wedge for How to check if the given string is palindrome?Wedge2008-09-09T19:14:26Z2008-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 > 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#526886Answer by mweerden for How to check if the given string is palindrome?mweerden2008-09-09T19:26:43Z2008-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#527498Answer by Brian Warshaw for How to check if the given string is palindrome?Brian Warshaw2008-09-09T19:52:33Z2008-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#530098Answer by Hostile for How to check if the given string is palindrome?Hostile2008-09-09T22:01:54Z2008-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 < 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;
}
</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#530551Answer by Vertigo for How to check if the given string is palindrome?Vertigo2008-09-09T22:35:29Z2008-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#531480Answer by SCdF for How to check if the given string is palindrome?SCdF2008-09-09T23:34:51Z2008-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#532150Answer by Pedro for How to check if the given string is palindrome?Pedro2008-09-10T00:22:50Z2008-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 < 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--;
}
<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#535051Answer by tj9991 for How to check if the given string is palindrome?tj99912008-09-10T06:08:15Z2008-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 -> Bool
isPalindrome n = (n == reverse n)
</code></pre>
http://stackoverflow.com/questions/52002/how-to-check-if-the-given-string-is-palindrome/56204#562042Answer by Will Boyce for How to check if the given string is palindrome?Will Boyce2008-09-11T10:14:27Z2008-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#585750Answer by Prakash for How to check if the given string is palindrome?Prakash2008-09-12T09:47:43Z2008-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#590790Answer by Prakash for How to check if the given string is palindrome?Prakash2008-09-12T14:05:03Z2008-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#593642Answer by Alexander Stolz for How to check if the given string is palindrome?Alexander Stolz2008-09-12T15:45:58Z2008-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#633660Answer by LepardUK for How to check if the given string is palindrome?LepardUK2008-09-15T14:23:24Z2008-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#689001Answer by Michael Carman for How to check if the given string is palindrome?Michael Carman2008-09-16T02:29:55Z2008-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#766670Answer by Florian for How to check if the given string is palindrome?Florian2008-09-16T20:31:04Z2008-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#775080Answer by Skizz for How to check if the given string is palindrome?Skizz2008-09-16T21:46:55Z2008-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<=b;c=(c?c==1?c=(*a&~32)-65>25u?*++a,1:2:c==2?(*--b&~32)-65<26u?3:2:c==3?(*b-65&~32)-(*a-65&~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#776202Answer by paercebal for How to check if the given string is palindrome?paercebal2008-09-16T21:56:53Z2008-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 <, 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 & p_strText)
{
if(p_strText.length() < 2) return true ;
const char * pStart = p_strText.c_str() ;
const char * pEnd = pStart + p_strText.length() - 1 ;
for(; pStart < 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 <typename T>
bool isPalindromeB(const T & 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 < 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 <typename T>
bool isPalindromeC(const T & 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#2287060Answer by Anon for How to check if the given string is palindrome?Anon2008-10-23T06:16:13Z2008-10-23T06:16:13Z<p>c++:</p>
<pre><code>bool is_palindrome(const string &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#2287070Answer by Shabbyrobe for How to check if the given string is palindrome?Shabbyrobe2008-10-23T06:16:55Z2008-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) && clean.Length > 1)
{
isPalindrome = true;
for (int i = 0, count = clean.Length / 2 + 1; i < 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 > 1)
{
isPalindrome = true;
for (int i = 0, count = words.Length / 2 + 1; i < 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#2634490Answer by Hugo Chavez for How to check if the given string is palindrome?Hugo Chavez2008-11-04T21:05:13Z2008-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#2777210Answer by anukool_j for How to check if the given string is palindrome?anukool_j2008-11-10T12:05:24Z2008-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#2777270Answer by Johannes Schaub - litb for How to check if the given string is palindrome?Johannes Schaub - litb2008-11-10T12:09:11Z2008-11-11T06:54:45Z<h2>C++</h2>
<pre><code>std::string a = "god";
std::string b = "lol";
std::cout << (std::string(a.rbegin(), a.rend()) == a) << " "
<< (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 && echo yes || echo no), $(ispalin lol && echo yes || echo no)"
</code></pre>
<h2>Gnu Awk</h2>
<pre><code>/* obvious solution */
function ispalin(cand, i) {
for(i=0; i<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] -> Bool
ispalin a = a == (let xi (y:my) = (xi my) ++ [y]; xi [] = [] in \x -> 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#2780030Answer by reefnet_alex for How to check if the given string is palindrome?reefnet_alex2008-11-10T14:35:51Z2008-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#3715230Answer by Jason Lepack for How to check if the given string is palindrome?Jason Lepack2008-12-16T14:44:13Z2008-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 < 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#4303170Answer by Vadim Ferderer for How to check if the given string is palindrome?Vadim Ferderer2009-01-10T01:15:14Z2009-01-10T16:00:31Z<p>Efficient C++ version:</p>
<pre><code>template< typename Iterator >
bool is_palindrome( Iterator first, Iterator last, std::locale const& loc = std::locale("") )
{
if ( first == last )
return true;
for( --last; first < last; ++first, --last )
{
while( ! std::isalnum( *first, loc ) && first < last )
++first;
while( ! std::isalnum( *last, loc ) && first < 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#4303630Answer by Dave Sherohman for How to check if the given string is palindrome?Dave Sherohman2009-01-10T01:47:01Z2009-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 && shift @chars eq pop @chars) {};
return scalar @chars <= 1;
}
</code></pre>
http://stackoverflow.com/questions/52002/how-to-check-if-the-given-string-is-palindrome/430393#4303930Answer by bnkdev for How to check if the given string is palindrome?bnkdev2009-01-10T02:08:27Z2009-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#4304440Answer by BBetances for How to check if the given string is palindrome?BBetances2009-01-10T02:46:45Z2009-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#4304830Answer by hughdbrown for How to check if the given string is palindrome?hughdbrown2009-01-10T03:07:59Z2009-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 = &str[len-1];
while (str < 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#6598091Answer by Ascalonian for How to check if the given string is palindrome?Ascalonian2009-03-18T19:40:55Z2009-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#7606150Answer by armahg for How to check if the given string is palindrome?armahg2009-04-17T14:24:50Z2009-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#10394660Answer by patjbs for How to check if the given string is palindrome?patjbs2009-06-24T16:31:53Z2009-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> /// <summary>
/// Tests if a string is a palindrome
/// </summary>
public static bool IsPalindrome(this String str)
{
if (str.Length == 0) return false;
int index = 0;
while (index < 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#10395491Answer by Matchu for How to check if the given string is palindrome?Matchu2009-06-24T16:44:02Z2009-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? # => false
puts 'aba'.is_palindrome? # => true
puts "Madam, I'm Adam.".is_palindrome? # => true
</code></pre>
http://stackoverflow.com/questions/52002/how-to-check-if-the-given-string-is-palindrome/1078441#10784410Answer by Alexander Stolz for How to check if the given string is palindrome?Alexander Stolz2009-07-03T08:53:44Z2009-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#11153331Answer by AlejandroR for How to check if the given string is palindrome?AlejandroR2009-07-12T04:45:12Z2009-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>