strcmp函数
原型:extern int strcmp(const char *s1, const char * s2);
用法:#include <string.h>
功能:比较字符串s1和s2。
当s1<s2时,返回值<0
当s1 = s2时,返回值 = 0
当s1>s2时,返回值>0
即:两个字符串自左向右逐个字符相比(按ASCII值大小相比较),直到出现不同的字符或遇'\0'为止。如:
原型:extern int strcmp(const char *s1, const char * s2);
用法:#include <string.h>
功能:比较字符串s1和s2。
一般形式:strcmp(字符串1,字符串2)
当s1<s2时,返回值<0
当s1 = s2时,返回值 = 0
当s1>s2时,返回值>0
即:两个字符串自左向右逐个字符相比(按ASCII值大小相比较),直到出现不同的字符或遇'\0'为止。如:
"A"<"B" "a">"A" "computer">"compare"
特别注意:strcmp(const char *s1, const char * s2)这里面只能比较字符串,不能比较数字等其他形式的参数。
排序多个字符串一般由字符串的首字符决定
void Bubble(char *str[], int sz)
{
int i = 0;
int j = 0;
int flag = 1;
for (i = 0; i < sz - 1; i++)
{
int flag = 0;
for (j = 0; j < sz - 1 - i; j++)
{
if (strcmp(*(str+j), *(str +1+ j))>0) //*str的ASKII码值大于*(str+j),交换两个字符串,也就是首字母小的在前面
{
char *tmp = *(str+j);
*(str+j) = *(str + 1+j);
*(str + 1+j) = tmp;
flag = 1;
}
}
if (!flag)
{
break;
}
}
}
int main(

本文介绍了如何使用C语言的strcmp函数进行冒泡排序,重点关注字符串而不是数字。strcmp函数用于比较两个字符串,遵循特定的字符比较规则。排序过程中主要依据字符串的首字符进行比较。
最低0.47元/天 解锁文章
836

被折叠的 条评论
为什么被折叠?



