C语言数据结构利用堆栈判断N个字串是不是回文?
用数组模拟栈,然后分情况讨论!
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int IsPalindrome(const char *cScr);
void main(void)
{
char cStr[21];
while(1)
{
gets(cStr);
printf("%d\n",IsPalindrome(cStr));
}
}
int IsPalindrome(const char *cScr)
{
int iLen = strlen(cScr);
//预留数组首元素,栈顶从第二元素开始
int top = 1;
char *cMyStack = (char *)malloc( (iLen/2+1)*sizeof(char) );
//定位对原始数组的检测索引初始位置
cMyStack[0] = iLen/2;
if ( 1 == iLen%2 )
{
++cMyStack[0];
}
//将原始数组的一半元素入栈
for ( top=1; top<=iLen/2; top++ )
{
cMyStack[top] = *(cScr+top-1);
}
//从栈顶开始依次匹配
while ( *(cScr+cMyStack[0]) == cMyStack[--top] && cMyStack[0]++ < iLen ){}
if ( 0 == top )
{//是回文数
free(cMyStack);
return 1;
}
else
{//不是回文数
free(cMyStack);
return 0;
}
}