搜索资源列表
mystrstr
- 自己写的str 函数,想了很长的时间,不知道算法和库函数的里的是否一样-function of strstr
rewrite-string-library-fnuction
- 主要是重写字符串处理库函数 有:strcat,strcmp , strlen, strstr-Mainly rewrite string handling library functions are: strcat, strcmp, strlen, strstr
设计strstr函数
- 描述 C语言中有一个函数strstr。我们编写一个类似功能的函数,mystrstr int mystrstr(char a[], char b[]); 作用是查找字符串a中出现的第一个b串的下标,如果没有找到,返回-1。 输入 分别输入两个字符串a,b,分别占一行。字符串长度不超过500个字符。 输出 字符串a中出现的第一个b串的下标。 样例 输入 abca a 输出 0(describe There is a function strstr in C language. W