概述
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <assert.h>
//在s1中查找s2,并返回s2在s1中第一次出现的位置
char *strstr_bxy(const char *s1,const char *s2)
{
assert(s1 != NULL && s2 != NULL);
if(*s2 != '
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <assert.h>
//在s1中查找s2,并返回s2在s1中第一次出现的位置
char *strstr_bxy(const char *s1,const char *s2)
{
assert(s1 != NULL && s2 != NULL);
if(*s2 != '