我正在编写用于检查字符串是否为回文的代码。我想忽略空格和标点符号或任何其他非字母字符。
根据我的代码,这基本上意味着“女士Imadam”也应该是回文。
但是没有得到适当的结果。

#include <stdio.h>
#include <stdlib.h>
void chkpalindrome(char []);
int main()
{
    char s[50];
    gets(s);
    chkpalindrome(s);
    return 0;
}
void chkpalindrome(char a[50])
{
    int i=0;
    int j=0;
    int flag=1;
    while(a[j+1]!='\0') //so that 'j' should point to the last index                         of string
    {
        j=j+1;
    }
    while((i!=j)&&(i!=(j+1)))
    {
        if((a[i]<'A')||('Z'<a[i]<'a')||(a[i]>'z'))
        {
            i=i+1;
        }
        else if((a[j]<'A')||('Z'<a[j]<'a')||(a[j]>'z'))
        {
            j=j-1;
        }
        else
        {
        if(a[i]!=a[j])
        {
            flag=0;
            break;
        }
        else
        {
            i=i+1;
            j=j-1;
        }
        }
    }
    if(flag==1)
    {
        printf("IT IS A PALINDROME");
    }
    else
    {
        printf("IT IS NOT A PALINDROME");
    }
}


预期成果,夫人I'Imadam-这是回文
evee-它不是回文
但是实际结果表明回文是每一个字符串

最佳答案

形式90<a[i]<97被解释为(90<a[i])<97,所以当然这不是您期望的

必须为(90<a[i]) && (a[i]<97)

你有几次错误

就像在评论中所说的那样,使用像“ a”这样的字符而不是代码



而不是做

while(a[j+1]!='\0') //so that 'j' should point to the last index                         of string
{
    j=j+1;
}


我鼓励你使用strlen

关于c - 在此回文字符串忽略标点符号的检查代码中出现错误,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/54251709/

10-13 07:05