qsort( 【*指针,解引用后指向的是 等待排序的元素的类型 的指针数组 】,【count,数组中的指针解引用后的元素的数量】,【size,数组中的指针解引用后的元素的大小】 ,compare 【compare是回调函数,没有()】)intcompare(constvoid*p1,constvoid*p2) { pNode_t pa=(pNode_t)p1; pNode_t pb=(pNode_t)p2...