有一个在给定字符串中查找子串的函数strstr,该函数从给定的字符串src中查找substr并返回一个整数,指明substr第一次出现的位置(从0开始计数),如果找不到则返回-1。
要求:
1、实现该函数。
2、为该函数设计与实现单元测试。
说明:
1、代码中不允许使用系统已有的库函数,..
分类:
其他好文 时间:
2014-09-24 20:16:38
阅读次数:
206
写出在母串中查找子串出现次数的代码#includeint count1(char* s1, char* s2){ int count = 0; while(*s1!='\0') { while(*s2 == *s1&&(*s2!='\0')&&(*s1!='\0')) { s2++; s1++; }...
分类:
其他好文 时间:
2014-09-10 21:02:01
阅读次数:
127
1、在源字符串Src中查找子串S,返回Src中S之前的部分Function Before( Src,S:string ): string ;Var F: Word ;begin if Src = '' then Before := ''; F := Pos(S, Src); if ...
分类:
其他好文 时间:
2014-06-27 20:18:50
阅读次数:
206
获取字符串长度%x="abcd"#方法一%expr length $x4# 方法二%echo
${#x}4# 方法三%expr "$x" : ".*"4# expr 的帮助# STRING : REGEXP anchored pattern match
of REGEXP in STRING查找子串...
分类:
其他好文 时间:
2014-05-01 02:54:16
阅读次数:
404