想用C++的qsort做间接排序,怎么写比较函数?

2024-12-28 20:43:48
推荐回答(1个)
回答1:

int cmp(const void *a,const void *b){
return w[*((int*)a)]-w[*((int*)b)];
}