标签:style blog http java color strong
qsort(&g_AMTBuf[g_dwAMTLenth], m_nCount, sizeof(12), Compare);
参数说明:
1.待排序数组首地址;
2.数组中待排序元素数量;
3.各元素的占用空间大小;
4.指向函数的指针。
1 int Compare(const void *a,const void *b) 2 { 3 //return (*(*int)a)-(*(int*)b);//升序 4 return *(int*)a - *(int*)b;//升序 5 }
说明:*(int*)a 它先把这个指向空类型的指针a强制转换为指向int的指针,然后再取这个指针的内容。
参考:http://www.cnblogs.com/syxchina/archive/2010/07/29/2197382.html
工作总结:qsort函数用法,码迷,mamicode.com
标签:style blog http java color strong
原文地址:http://www.cnblogs.com/CocoWang/p/3698572.html