码迷,mamicode.com
首页 > 其他好文 > 详细

工作总结:qsort函数用法

时间:2014-04-29 09:12:46      阅读:398      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   java   color   strong   

qsort(&g_AMTBuf[g_dwAMTLenth], m_nCount, sizeof(12), Compare);

参数说明:

1.待排序数组首地址;

2.数组中待排序元素数量;

3.各元素的占用空间大小;

4.指向函数的指针。

 

mamicode.com,码迷
1 int Compare(const void *a,const void *b)
2 {
3     //return (*(*int)a)-(*(int*)b);//升序
4     return *(int*)a - *(int*)b;//升序
5 }  
mamicode.com,码迷

说明:*(int*)a 它先把这个指向空类型的指针a强制转换为指向int的指针,然后再取这个指针的内容。

参考:http://www.cnblogs.com/syxchina/archive/2010/07/29/2197382.html

 

工作总结:qsort函数用法,码迷,mamicode.com

工作总结:qsort函数用法

标签:style   blog   http   java   color   strong   

原文地址:http://www.cnblogs.com/CocoWang/p/3698572.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!