写回文的程序,自己写了个字符数组判等函数
int Strequl(char str[],char str1[])
{
int i,j;
// int length0=strlen(str);
// int length1=strlen(str1);
// if(length0 != length1)return FALSE;
for(i=0,j=0;str[i]!='\0' && str1[j]!='\0';i++ ,j++)
{
if(str[i]!=str1[j])
return FALSE;
}
return TRUE;
}
大家看看有什么错啊 谢谢指点
下面是写的回文总的函数
#include <stdio.h>
#include <stdlib.h>
#include <malloc.h>
#include <iostream.h>
#include <string.h>
#define MAX 1000
#define TRUE 1
#define FALSE -1
#define STACK_INIT_SIZE 100//初始分配量
#define STACKINCREMENT 10//分配增量
typedef struct ///////定义结构
{
char *base;
char *top;
char stacksize;
}SqStack;
void InitStack(SqStack &S)///初始化栈
{
S.base=(char *)malloc(STACK_INIT_SIZE *sizeof(char));
if(!S.base)exit(1);
S.top=S.base;
S.stacksize=STACK_INIT_SIZE;
}
int GetTop(SqStack &S,char &e)///获得栈顶元素
{
if(S.top==S.base)return 0;
e=*(S.top-1);
return e;
}
void Push(SqStack &S,char e)///入栈
{
if(S.top-S.base>=S.stacksize)
{
S.base=(char *)realloc(S.base,(S.stacksize+STACKINCREMENT)*sizeof(char));
if(!S.base)exit(1);
S.top=S.base+S.stacksize;
S.stacksize+=STACKINCREMENT;
}
*S.top=e;
S.top++;
}
int Pop(SqStack &S,char &e)///出栈
{
if(S.top==S.base)exit(1);
e=* --S.top;
return e;
}
bool StackEmpty(SqStack &S)//判空
{
if(S.base==S.top)return true;
return false;
}
/*void Conversion()
{
int N,e;
SqStack S;
InitStack(S);
printf("input the number which you want to conver:");
scanf("%d",&N);
while(N)
{
Push(S,N%2);
N=N/2;
}
while(!StackEmpty(S))
{
Pop(S,e);
printf("%d",e);
}
}*/
int Strequl(char str[],char str1[])
{
int i,j;
// int length0=strlen(str);
// int length1=strlen(str1);
// if(length0 != length1)return FALSE;
for(i=0,j=0;str[i]!='\0' && str1[j]!='\0';i++ ,j++)
{
if(str[i]!=str1[j])
return FALSE;
}
return TRUE;
}
int Huiwen()
{
int i;
char ch;
char str[MAX],str1[MAX];
SqStack S;
InitStack(S);
printf("input your string:");
gets(str);
int length=strlen(str);
for(i=0;i<length;i++)
cout<<str[i];
cout<<endl;
int j=0;
// char str1[length];
for(i=0;i<=length;i++)
Push(S,str[i]);
while(!StackEmpty(S))
{
Pop(S,ch);
str1[j]=ch;
j++;
}
for(i=1;i<=length;i++)
cout<<str1[i];
cout<<endl;
// getch();
// cout<<strcmp(str,str1);
cout<<Strequl(str,str1);
return 0;
}
int main()
{
// Conversion();
Huiwen();
return 0;
}
[此贴子已经被作者于2007-11-18 14:23:49编辑过]