strstr 函数的实现

时间:2024-11-06 17:06:50

strstr函数:返回主串中子字符串的位置后的所有字符。

#include <stdio.h>

const char *my_strstr(const char *str, const char *sub_str)
{
for(int i = ; str[i] != '\0'; i++)
{
int tem = i; //tem保留主串中的起始判断下标位置
int j = ;
while(str[i++] == sub_str[j++])
{
if(sub_str[j] == '\0')
{
return &str[tem];
}
}
i = tem;
} return NULL;
} int main()
{
char *s = "1233345hello";
char *sub = "";
printf("%s\n", my_strstr(s, sub));
return ;
}