实现StrStr
weixin_43489941
这个作者很懒,什么都没留下…
展开
-
自己亲手操练strstr
#include “stdio.h” char *strstr(char *str, char *chs){ char *temp_str = str; // 用于记录遍历到str的哪个位置,方便返回 while (*temp_str != 0) { char *p_chs = chs; char *p_str = temp_str; while ((*p_str == *p_chs) && (p_chs != ‘\0’)) { p_str++; p_chs++; } if (*p_c原创 2020-10-17 13:44:42 · 72 阅读 · 0 评论 -
别人实现的strstr
#include “stdio.h” char strstr(char str, char chs){ /char tstr = str; char * tchs = chs;/ char tstr = str;// 用于遍历源字符串 char * tchs = chs; char Samestr = str; // 定位与源字符串相同的首地址 while (*tstr != ‘\0’){ if (*tstr == *tchs){ Samestr = tstr; while (*tchs != '原创 2020-09-14 13:45:20 · 61 阅读 · 0 评论