[求助]helpfg救命 1道题 谢谢
1求子串在主串中的位置或置换子串给定主串和子串,显示出子串在主串中的第一个位置,其子串在串中不存在,则返0
C语言设计!
这个差不多吧,虽说效率低了点。。。
int search(unsigned char *s1,unsigned char *s2)
{
int i,j,position=0;
for(i=0;s1[i]!='\0';i++)
{
if(s1[i]==s2[0]&&position==0)
{
position=i+1;
for(j=1;s2[j]!='\0';j++)
{
if(s1[i+j]!=s2[j])
{
position=0;
}
}
}
}
return position;
}
main()
{
int position;
unsigned char a[50]={"i am chinese,you are not chinses!"};
unsigned char b[20]={"chinese"};
position=search(a,b);
printf("%d\n",position);
getch();
}