当前位置:   article > 正文

Linux C语言 内置排序函数对结构体排序_linux c 数组排序

linux c 数组排序

1. 定义结构体

  1. #define MAXSIZE 10000
  2. struct FileInfo
  3. {
  4.     char *fname;
  5.     long file_size;
  6. }filesInfo[MAXSIZE];

2. 定义comp函数

  1. int comp(const void* index_p, const void* index_f)
  2. {
  3.     struct FileInfo *index_pp = (struct FileInfo *)index_p;
  4.      struct FileInfo *index_ff = (struct FileInfo *)index_f;
  5.      return ((index_pp->file_size)-(index_ff->file_size));  //  升序
  6. //   return ((index_ff->file_size)-(index_pp->file_size));  //降序
  7. }

3. 调用封装好的排序函数

qsort()函数是 C 库中实现的快速排序算法,包含在 stdlib.h 头文件中。

函数原型为:

void qsort(void *base, size_t nitems, size_t size, int (*compar)(const void *, const void*)) 

 qsort(filesInfo, file_count, sizeof(filesInfo[0]),comp);

base 指向要排序的数组的第一个元素的指针。

nitems由 base 指向的数组中元素的个数。

size -- 数组中每个元素的大小,以字节为单位。

compar -- 用来比较两个元素的函数。

4. 结果展示

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/251539
推荐阅读
相关标签
  

闽ICP备14008679号