#include<stdio.h>
#include <string.h>
#define MaxSize 100
typedef struct
{
char str[MaxSize];
int length;
}String;
void main()
{
String myString1 ={"I am a student!",15},
myString2 ={"am",2};
//myString2 ={"an",2};
int i;
int BFIndex(String S,int start,String T);
i=BFIndex(myString1,0,myString2);
printf("主串是: %s\n",&myString1);
printf("子串是: %s\n",&myString2);
if(i==-1)
printf("主串中不存在该子串!\n");
else
printf("主串中存在该子串,在主串的 %d 位置开始",i);
_flushall();
getchar();
}
int BFIndex(String S,int start,String T)
{
int v=0;
char*ch1=NULL;
char*ch2=NULL;
ch1 = S.str;
ch2 = T.str;
while(ch1!=NULL)
{
if (memcmp(ch1++,ch2,T.length))
{
v++;
}else
{
break;
}
}
if (v>S.length)
{
v=-1;
}
return v;
}
结果1: