一个整数,前后对称称为回文数,比如11211是回文数,12321是回文数。那么回文字符串也是同样的道理,strrts是回文字符串,heleh是回文字符串。
我们就可以来实现下它,非常的简单。
#include <stdio.h> #include <string.h> /* *date:2016.10.14 *author:y.x.yang * */ int HuiwenStr(char *str) { //定义两个指针,s1指向字符串str的首个字符,s2指向字符串str的倒数第一个字符 char *s1 , *s2 ; //不匹配计数器 int count = 0 ; //s1从首个字符往后遍历,s2从末尾字符往前遍历 //注意, s2 = str + strlen(str) - 1 str是首地址,也就是0地址,往后加上偏移量,如果此时不减1那就越界了。 for(s1 = str , s2 = str + strlen(str) - 1; s2 > s1 ; s1++,s2--) { //判断是否出现不同,只要当count不等于0,那么这个字符串就不是回文字符串 if(*s1 != *s2) count++; } return count ; } int main(int argc, char *argv[]) { int ret ; ret = HuiwenStr("helloworld"); if(ret > 0) printf("不是回文字符串\n"); else printf("是回文字符串\n"); return 0; }