加载中…
个人资料
  • 博客等级:
  • 博客积分:
  • 博客访问:
  • 关注人气:
  • 获赠金笔:0支
  • 赠出金笔:0支
  • 荣誉徽章:
正文 字体大小:

(3)假设称正读和反读都相同的字符序列为”回文”,试写一个算法判别读入的一个以’@’为结束符的字

(2012-05-30 12:34:41)
标签:

字符串

回文

反读

试写

正读

it

#include <stdio.h>
#include <string.h>
typedef struct
{
 char data[10];
 int top;       
}seqstack;
main()
{int i;
 char a[9],b[9];
 int m;
 seqstack *s;
 s=(seqstack*)malloc(sizeof(seqstack));
 s->top=-1;
 printf("请你输入8位的a字符串:\n");
 for(i=0;i<9;i++)
   scanf("%c",&a[i]);
 i=0;
 while(a[i]!='@')
 {
   s->top++;
   s->data[s->top]=a[i];
   i++;                 
 }
//printf("%d ",i);
 i=7;
 while(s->top>=0)
  {
   b[i]=s->data[s->top];
   s->top--;
   i--;
  }
 b[8]='@';
 m=strcmp(a,b);
 printf("%d",m);
 if(m==0)
   printf("你所输入的字符串为回文!");
 else
   printf("你所输入的字符串不是回文!");
 getchar();
 getchar();
}

0

阅读 收藏 喜欢 打印举报/Report
  

新浪BLOG意见反馈留言板 欢迎批评指正

新浪简介 | About Sina | 广告服务 | 联系我们 | 招聘信息 | 网站律师 | SINA English | 产品答疑

新浪公司 版权所有