NoFear

导航

2011年11月24日

摘要: View Code char* _strstr(char* haystack,char* needle){ //逐位 for(;;++haystack) { char* h = haystack; for(char* n = needle;;++n,++h) { //匹配段空返回 if(!*n) return haystack; //1.先找到需要比较的开头 2.比较当前字符 if(*h !=*n) ... 阅读全文

posted @ 2011-11-24 22:06 Fear_Hao 阅读(124) 评论(0) 推荐(0) 编辑