当前位置:   article > 正文

数据结构 判断字符串是否为回文_数据结构判断一个字符串是否为回文

数据结构判断一个字符串是否为回文
#include<stdlib.h>
#include<stdio.h>
#define MAXSIZE 100
bool judge()
{
 int n = 0;
 char arr[MAXSIZE], c=0;
 while (c != '#')
 {
  c = getchar();
  arr[n++] = c;
 }
 char *front = arr, *rear = arr + n-2;
 while (rear >= front)
 {
  if (*front != *rear)
   return false;
  front++;
  rear--;
 }
 return true;
}
int main()
{
 if (judge())
  printf("是回文");
 else
  printf("不是回文");
 while (1);
}
  • 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

在这里插入图片描述
在这里插入图片描述

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

闽ICP备14008679号