Post Made Community Wiki by Community
show/hide this revision's text 4 edited body

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')
    		<='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.

show/hide this revision's text 3 added 370 characters in body

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.

show/hide this revision's text 2 added 137 characters in body
show/hide this revision's text 1