判断是否为回文

判断是否为回文

ID:47864493

大小:29.50 KB

页数:4页

时间:2019-08-05

判断是否为回文_第1页
判断是否为回文_第2页
判断是否为回文_第3页
判断是否为回文_第4页
资源描述:

《判断是否为回文》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库

1、#include#include#include#include#includeusingnamespacestd;#defineTRUE1#defineFLASE0#defineOK1#defineERROR0#defineINFEASIBLE-1#defineOVERFLOW-2typedefintStatus;typedefcharSElemType;#defineSTACK_INIT_SIZE100;#defineSTACKINCREMENT10;typedefstruct{

2、SElemType*base;SElemType*top;intstacksize;}SqStack;StatusInitStack(SqStack&S){S.base=(SElemType*)malloc(100*sizeof(SElemType));//修改if(!S.base)exit(OVERFLOW);S.top=S.base;S.stacksize=STACK_INIT_SIZE;returnOK;}StatusGetTop(SqStackS,SElemType&e){if(S.top==S.base)returnERROR;e=*(S.top-1);return

3、OK;}StatusPush(SqStack&S,SElemTypee){if(S.top-S.base>=S.stacksize){S.base=(SElemType*)realloc(S.base,(S.stacksize+10)*sizeof(SElemType));//修改if(!S.base)exit(OVERFLOW);S.top=S.base+S.stacksize;S.stacksize+=STACKINCREMENT;}*S.top++=e;returnOK;}StatusPop(SqStack&S,SElemType&e){if(S.top==S.base

4、)returnERROR;e=*--S.top;returnOK;}StatusDestroyStack(SqStack&S){free(S.base);S.base=NULL;S.top=NULL;S.stacksize=0;returnOK;}StatusClearStack(SqStack&S){S.top=S.base;returnOK;}StatusStackEmpty(SqStackS){if(S.base==S.top)returnOK;elsereturnERROR;}StatusStackLength(SqStackS){intl;l=S.top-S.bas

5、e;returnl;}typedefcharQElemType;#defineMAXQSIZE100typedefstruct{QElemType*base;intfront;intrear;}SqQueue;StatusInitQueue(SqQueue&Q){Q.base=(QElemType*)malloc(MAXQSIZE*sizeof(QElemType));if(!Q.base)exit(OVERFLOW);Q.front=Q.rear=0;returnOK;}intQueueLength(SqQueueQ){return(Q.rear-Q.front+MAXQS

6、IZE)%MAXQSIZE;}StatusEnQueue(SqQueue&Q,QElemTypee){if((Q.rear+1)%MAXQSIZE==Q.front)returnERROR;Q.base[Q.rear]=e;Q.rear=(Q.rear+1)%MAXQSIZE;returnOK;}StatusDeQueue(SqQueue&Q,QElemType&e){if(Q.front==Q.rear)returnERROR;e=Q.base[Q.front];Q.front=(Q.front+1)%MAXQSIZE;returnOK;}Statusabc(strings

7、tr){SqStackS;InitStack(S);SqQueueQ;InitQueue(Q);chare1,e2;for(inti=0;str[i]!='@';i++){Push(S,str[i]);EnQueue(Q,str[i]);}while(!StackEmpty(S)){Pop(S,e1);DeQueue(Q,e2);if(e1!=e2)returnERROR;}returnOK;}voidmain(){stringstr;inta;printf("请输入一个字符序列,并以@为结束符:");

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。