我写了一个简单的程序来整理我的数组。问题是代码仅在我需要数组具有 double
元素时才使用 int 值......有帮助吗?
#include <stdio.h>
#include <stdlib.h>
double values[] = { 88, 56, 100, 2, 25 };
int cmpfunc (const void * a, const void * b)
{
return ( *(int*)a - *(int*)b );
}
int main()
{
int n;
printf("Before sorting the list is: \n");
for( n = 0 ; n < 5; n++ )
{
printf("%.2f ", values[n]);
}
printf("\n\n");
qsort(values, 5, sizeof(double), cmpfunc);
printf("\nAfter sorting the list is: \n");
for( n = 0 ; n < 5; n++ )
{
printf("%.2f ", values[n]);
}
printf("\n\n");
return(0);
}
工作代码:
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
double values[] = { 88, 56, 100, 2, 25 };
int compare (const void * a, const void * b)
{
if (*(double*)a > *(double*)b) return 1;
else if (*(double*)a < *(double*)b) return -1;
else return 0;
}
int main()
{
int n;
printf("Before sorting the list is: \n");
for( n = 0 ; n < 5; n++ )
{
printf("%.2f ", values[n]);
}
printf("\n\n");
qsort(values, 5, sizeof(double), compare);
printf("\nAfter sorting the list is: \n");
for( n = 0 ; n < 5; n++ )
{
printf("%.2f ", values[n]);
}
printf("\n\n");
return(0);
}
最佳答案
您想对 double 进行排序,但将它们作为整数进行比较...试试这个比较函数:
int cmpfunc (const void * a, const void * b)
{
if (*(double*)a > *(double*)b)
return 1;
else if (*(double*)a < *(double*)b)
return -1;
else
return 0;
}
关于c - 为什么来自 stdlib 的 qsort 不适用于双值? [C],我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/20584499/