标签:blog io ar sp strong div on log bs
一定义:
字符串:字符串是由零个或者多个字符组成的有限串行;
子串:字符串中任意个连续的字符组成的子序列,并规定空串是任意串的子串,字符串本身也是子串之一;“abcdefg”,”abc“就是其子串,但是“ade”不属于子串范围。
子序列:不要求字符连续,但是其顺序与其在主串中相一致;上例中,“abc”与“ade”都属于子序列范围;
二:C风格字符串包括两种:
1)字符串常量---以双引号括起来的字符序列,编译器自动在其末尾添加一个空字符。
2)末尾添加了’0‘的字符数组;
char ch1[]={ ‘c‘, ‘+‘, ‘+‘};//不是C风格字符串 char ch2[]={ ‘c‘, ‘+‘, ‘+‘, ‘\0‘};//C风格字符串 char ch3[] = "C++";//C风格字符串 sizeof(ch3) = 4; strlen(ch3) = 3;
三:标准库提供的字符串处理函数:
strlen(s) : 返回S的长度,不包括字符串结束符NULL; strcmp(s1,s2) :比较两个字符串是否相同,若s1==s2,返回0,若s1>s2则返回正数,若s1<s2则返回负数; strcat(s1,s2):将字符串s2连接到s1上,返回 s1; strcpy(s1,s2):将s2,复制到s1,返回 s1.
1)自定义函数实现strlen的功能:
//附带评分标准 int strlen(const char* src)//const 2‘ { assert(str != NULL); // 3‘ int count =0; while(*str++ != ‘\0‘) //2‘ count++; return count;//3‘ }
2)自定义函数实现strcmp的功能:
int strcmp(const char *s1, const char *s2) { assert(s1 != NULL && s2 != NULL); int ret; //s1 ="abcd"; s2 = "abcde";则ret = 0-‘e‘ < 0 while( !(ret = *(unsigned char*)s1 - *(unsigned char*)s2) && *s1) { s1 ++; s2 ++; } if(ret < 0) return -1; else if( ret >0) return 1; return 0; }
3)自定义函数实现strcat的功能:
int strcmp(const char *strD, const char *strS) { assert(strD != NULL && strS != NULL); char* address = strD; while(*strD != ‘\0‘) //走到末尾 strD ++; while((*strD++ = *strS++) != NULL);//cat return address; //attention }
3)自定义函数实现strcpy的功能:
int strcmp(const char *strD, const char *strS) { assert(strD != NULL && strS != NULL); char* address = strD;
//attention此处,若*strS为’\0‘,则其先赋值给strD,故最后不需要再添加‘\0‘ while((*strD++ = *strS++) != NULL);//copy return address; //attention }
C字符串——库函数系列(strlen、strcat、strcpy、strcmp)
标签:blog io ar sp strong div on log bs
原文地址:http://www.cnblogs.com/xfxu/p/4083652.html