#include <math.h>#include <stdio.h>#include <stdlib.h>int cmp(const int *a, const int *b){return abs(*b) - abs(*a);}int main(void){int n, i, x[101];while (scanf("%d", &n), n){for (i = 0 ; i < n ; i++)scanf("%d", x + i);qsort(x, n, sizeof(int), cmp);for (i = 0 ; i < n ; i++)printf("%d%c", x[i], (i != n - 1 ? ' ' : '\n'));}return 0;}qsort(x, n, sizeof(int), cmp);不了解qsort
1 回答
紫衣仙女
TA贡献1839条经验 获得超15个赞
qsort快排的库函数,cmp()是快排函数中需要调用的比较函数,也就是次排序应如何排(如是从大大小还是从小到大),此函数可缺省,也可自己写,你给的cmp就是自己写的意思应该是按绝对值的升序排序
添加回答
举报
0/150
提交
取消