strstr的实现 #define _CRT_SECURE_NO_WARNINGS#include<stdio.h>#include<stdlib.h>#include<string.h>#include<time.h>char *my_strstr(char *dest, char *src){ int i = 0; int j = 0;... c/c++ 2024-08-26 34 点赞 0 评论 51 浏览