gpt4 book ai didi

c - 关于C中字符串数组的qsort

转载 作者:行者123 更新时间:2023-11-30 15:25:01 24 4
gpt4 key购买 nike

我正在尝试使用 qsort 按字母顺序对字符串数组进行排序.

当我使用comp1时,它将参数转换为 char** ,效果很好。
但如果我使用 comp2 则不会,转换为 char*相反。

为什么?我无法理解 comp1 之间的区别和 comp2 .

#include <stdio.h>
#include <string.h>
#include <stdlib.h>

int comp1(const void *a, const void *b) {
const char **pa = (const char **)a;
const char **pb = (const char **)b;
return strcmp(*pa, *pb);
}
int comp2(const void *a, const void *b) {
const char *pa = (const char *)a;
const char *pb = (const char *)b;
return strcmp(pa, pb);
}
void main(void) {
char *array[] = {"c","b","a"};
int size = sizeof(array)/sizeof(char *);
int i;
qsort(array,size,sizeof(char *),compX);
//compX is comp1 or comp2
for(i=0;i<size;i++){
printf("%s",array[i]);
}
}

输出

abc ←当我使用comp1时

cba ←当我使用comp2时

最佳答案

您的数组是指向字符串的指针数组。
由于比较器函数总是获取指向已排序元素开头的指针,这意味着它获取 指向 char*void* 到这些元素字符串。

将那些 void* 转换为 char* 显然是一种太少的间接方式。

关于c - 关于C中字符串数组的qsort,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28124810/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com