利用c函数qsort对结构体进行排序
[code="java"]#include #include typedef struct{ int x; int y; int h;}dot;int cmp(const void *a, const void *b){ return (*(dot *)a).h - (*(dot *)b).h;}int main(){ dot line[9]...