当前位置:   article > 正文

回文字符串C语言判断函数_用c语言做判断回文字符串的函数

用c语言做判断回文字符串的函数

C语言判断字符串是否为回文

#include <stdio.h>
#include <string.h>
#include <stdlib.h>

/* if str is palindrome return 0,or return 1*/
int ispalindrome(const char *str,int length)
{
    int i = 0;

    if(str[0] == '\0')
        return 1;

    for(i = 0; i < length/2; i++)
    {
        if(str[i] != str[length-i-1])
            break;
    }

    if(i == length/2)
    {
        return 0;
    }
    else
    {
        return 1;
    }
}

int main(int argc, char *argv[])
{
    int ret = 0;
    if(argc != 2)
    {
        printf("the argument is not right\n");
        exit(1);
    }

    ret = ispalindrome(argv[1], strlen(argv[1]));

    if(0 == ret)
    {
        printf("%s is palindrome\n",argv[1]);
    }
    else
    {
        printf("%s is not palindrome\n",argv[1]);
    }

    return 0;

}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51

运行
gcc test_palindrome.c

./a.out afdfa
afdfa is palindrome

./a.out abd
abd is not palindrome

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/花生_TL007/article/detail/158597
推荐阅读
相关标签
  

闽ICP备14008679号