1

我正在尝试使用qsort按字母顺序对字符串进行排序。目前,它似乎只是在颠倒我的字符串的顺序。

printf("unsorted %s\n", string);
qsort(string, strlen(string), sizeof(char), compare);
printf("sorted %s\n", string);

string 是字符串“ACBD”。第二个 printf 将其显示为“DBCA”。我的比较功能是,

compare(const void *a1, const void *b1){
     const int *a2 = a1;
     const int *b2 = b1;

     if(*a2 == *b2){
         return 0;
     }
     else{
         if(*a2 < *b2){
             return -1;
         }
         else{
             return 1;
         }
    }
}

我确定我在做一些非常愚蠢的事情,但感谢任何帮助。

编辑:字符串被声明为char string[1000]

4

1 回答 1

4

您想要进行字符比较,但实际上是在进行整数比较(sizeof int > sizeof char)。

修复它如下:

 char *a2 = a1;
 char *b2 = b1;
于 2013-08-14T06:57:51.777 回答