Chinaunix首页 | 论坛 | 博客
  • 博客访问: 141041
  • 博文数量: 66
  • 博客积分: 1571
  • 博客等级: 上尉
  • 技术积分: 715
  • 用 户 组: 普通用户
  • 注册时间: 2011-10-24 22:55
文章分类

全部博文(66)

文章存档

2012年(66)

我的朋友

分类: C/C++

2012-08-20 15:40:34

qsort包含在头文件中,此函数根据你给的比较条件进行快速排序,通过指针移动实现排序。排序之后的结果仍然放在原数组中。使用qsort函数必须自己写一个比较函数。

函数原型:

void qsort ( void * base, size_t num, size_t size, int ( * comparator ) ( const void *, const void * ) );

用法以及参数说明:

排序num个base指向的数组元素, 每个元素size bytes长, 使用comparator指定排序方向.

修改base指向的元素内容使其按新的排序方向存储.

base Pointer to the first element of the array to be sorted.(数组起始地址)
num Number of elements in the array pointed by base.(数组元素个数)
size Size in bytes of each element in the array.(每一个元素的大小)
comparator Function that compares two elements.(函数指针,指向比较函数)
1、The function must accept two parameters that are pointers to elements, type-casted as void*. These parameters should be cast back to some data type and be compared.
2、The return value of this function should represent whether elem1 is considered less than, equal to, or greater than elem2 by returning, respectively, a negative value, zero or a positive value.
Return Value none (无返回值)

点击(此处)折叠或打开

  1. 一、对int类型数组排序

  2. int num[100];

  3. int cmp ( const void *a , const void *b )
  4. {
  5. return *(int *)a - *(int *)b;
  6. }

  7. qsort(num,100,sizeof(num[0]),cmp);

  8. 二、对char类型数组排序(同int类型)

  9. char word[100];

  10. int cmp( const void *a , const void *b )
  11. {
  12. return *(char *)a - *(int *)b;
  13. }

  14. qsort(word,100,sizeof(word[0]),cmp);

  15. 三、对double类型数组排序

  16. double in[100];

  17. int cmp( const void *a , const void *b )
  18. {
  19. return *(double *)a > *(double *)b ? 1 : -1;
  20. }

  21. qsort(in,100,sizeof(in[0]),cmp);

  22. 四、对结构体一级排序

  23. struct Sample
  24. {
  25. double data;
  26. int other;
  27. }s[100]

  28. //按照data的值从小到大将结构体排序

  29. int cmp( const void *a ,const void *b)
  30. {
  31. return (*(Sample *)a).data > (*(Sample *)b).data ? 1 : -1;
  32. }

  33. qsort(s,100,sizeof(s[0]),cmp);

  34. 五、对结构体二级排序

  35. struct Sample
  36. {
  37. int x;
  38. int y;
  39. }s[100];

  40. //按照x从小到大排序,当x相等时按照y从大到小排序

  41. int cmp( const void *a , const void *b )
  42. {
  43. struct Sample *c = (Sample *)a;
  44. struct Sample *d = (Sample *)b;
  45. if(c->x != d->x) return c->x - d->x;
  46. else return d->y - c->y;
  47. }

  48. qsort(s,100,sizeof(s[0]),cmp);

  49. 六、对字符串进行排序

  50. struct Sample
  51. {
  52. int data;
  53. char str[100];
  54. }s[100];

  55. //按照结构体中字符串str的字典顺序排序

  56. int cmp ( const void *a , const void *b )
  57. {
  58. return strcmp( (*(Sample *)a).str , (*(Sample *)b).str );
  59. }

  60. qsort(s,100,sizeof(s[0]),cmp)


阅读(950) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~