快速排序,void Qsort(void *base,int nelem,int width, int (*fcmp)(const void *,const void *))的实现。
void swap(void * pLeft, void * pRight , int width){ void * tmp = malloc(width); memcpy( tmp , pLeft , width ); memcpy( pLeft , pRight , width ); memcpy( pRight, tmp , width ); fre
原创
2013-10-28 22:28:24 ·
688 阅读 ·
0 评论