码迷,mamicode.com
首页 > 其他好文 > 详细

.模拟实现strstr函数

时间:2016-03-22 06:41:40      阅读:222      评论:0      收藏:0      [点我收藏+]

标签:strstr

模拟实现strstr函数

int main()
{
	char *p1,*p2;
	char a1[]="abbbcd";
	char a2[]="bcd";
	p1=a1;
	p2=a2;
	while(*p1!=‘\0‘);
	{
		if(*p1!=*p2)
		{
			p1++;
			if(p2!=a2)
				p2=a2;
		}
		else
		{
			p1++;
			p2++;
		}
	}
	if(*p2==‘\0‘)
		printf("Exist\n");
	else
		printf("Not exist !\n");
	system("pause");
	return 0;
}


本文出自 “sunshine225” 博客,请务必保留此出处http://10707460.blog.51cto.com/10697460/1753591

.模拟实现strstr函数

标签:strstr

原文地址:http://10707460.blog.51cto.com/10697460/1753591

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!