c/c++中 qsort 与 bsearch 算法的使用


author: hjjdebug

date: 2023年 12月 13日 星期三 17:30:41 CST

descriptor: qsort & bsearch 算法的使用


qsort 用来排序,bsearch用来搜索,是这个意思,但具体怎样使用呢?

qsort 不仅可以用来排序一个整数数组,还可以排序一个结构数组.例子中给出了使用方法.

它真的会在内存中把数据不断的搬移来完成数据的排序.

如果你觉得排序结构数组比较浪费时间,可以让它排序指针.

qsort 在/usr/include/stdlib.h 中定义,

排序数组基地址为base, 数组元素个数nmemb, 每个元素大小为size, 用__compar来比大小

/* Sort NMEMB elements of BASE, of SIZE bytes each,

using COMPAR to perform the comparisons. */

extern void qsort (void *__base, size_t __nmemb, size_t __size,

__compar_fn_t __compar) __nonnull ((1, 4));

bsearch 在/usr/include/stdlib.h 中定义, 就在qsort 函数的上方

bsearch 二分搜索方法,是需要一个排序的数组的,所以先排序数组,然后让bsearch 搜索key

告诉它比较大小的方法,它就能返回能不能找到这个key了

二进制搜索一个key, 在BASE地址, 元素个数NMEMB, 元素大小SIZE,比较函数__COMPAR

/* Do a binary search for KEY in BASE, which consists of NMEMB elements

of SIZE bytes each, using COMPAR to perform the comparisons. */

extern void *bsearch (const void *__key, const void *__base,

size_t __nmemb, size_t __size, __compar_fn_t __compar)

有了这么好的功能,我们要利用起来, 下面是样例代码:

$ cat main.cpp

#include <stdio.h>

#include <stdlib.h>

#include <string.h>

/*

* 用途: 在命令行输入月份的简写, 它会告诉你是几月.

* 例如: ./bsearch aug , 会输出 8

* 实现方法: 当然是先建立一个表,然后让它找了.

* 由于这个表是我们人类方便查阅的方式给出的,为了编程的需要,先把它按月份名称的ascii顺序排序,

* 然后就可以用二分法来查找这个表了.

* 使用了c库中的qsort 函数, bsearch 函数

*/

//定义一个"月份信息" 结构 month_info, 月份号,月份名称

struct month_info {

int nr;

const char *name;

} months\[\] = {

{ 1, "jan" }, { 2, "feb" }, { 3, "mar" }, { 4, "apr" },

{ 5, "may" }, { 6, "jun" }, { 7, "jul" }, { 8, "aug" },

{ 9, "sep" }, {10, "oct" }, {11, "nov" }, {12, "dec" }

};

#define nr_of_months (sizeof(months)/sizeof(months0))

//"月份信息" 变量"大小"比较, 就是它们的名字比较

static int comp_mi(const void *m1, const void *m2)

{

struct month_info *mi1 = (struct month_info *) m1;

struct month_info *mi2 = (struct month_info *) m2;

return strcmp(mi1->name, mi2->name);

}

int main(int argc, char **argv)

{

printf("before sort:\n");

for(size_t i=0;i<nr_of_months;i++)

{

printf("#%d,%s ",monthsi.nr,monthsi.name);

}

printf("\n");

//按照ascii 顺序把结构数组重新排序

qsort(months, nr_of_months, sizeof(struct month_info), comp_mi);

printf("after sort:\n");

for(size_t i=0;i<nr_of_months;i++)

{

printf("#%d,%s ",monthsi.nr,monthsi.name);

}

printf("\n");

for (int i = 1; i < argc; i++) {

struct month_info key, *res;

key.name = argvi;

res = (struct month_info *)bsearch(&key, &months, nr_of_months, sizeof(struct month_info), comp_mi);

if (res == NULL)

printf("'%s': unknown month\n", argvi);

else

printf("%s: month #%d\n", res->name, res->nr);

}

exit(EXIT_SUCCESS);

}

下面是执行结果:

$ ./bsearch aug jan

before sort:

#1,jan #2,feb #3,mar #4,apr #5,may #6,jun #7,jul #8,aug #9,sep #10,oct #11,nov #12,dec

after sort:

#4,apr #8,aug #12,dec #2,feb #1,jan #7,jul #6,jun #3,mar #5,may #11,nov #10,oct #9,sep

aug: month #8

jan: month #1

相关推荐
Niuguangshuo2 小时前
论文解读:CTC,端到端序列识别的开山之作
算法·语音识别
讳疾忌医丶2 小时前
深度拆解 RocksDB 内核:基于 C++17 的 FIFO 调度状态机与温度阶梯自愈设计
java·c++·算法·架构
高亦真2 小时前
今天是学习嵌入式的第37天
linux·学习·算法
不会就选b3 小时前
数据结构之排序
数据结构
罗西的思考4 小时前
[Agent Memory / 强化学习] MemPO源码学习笔记 --- (2)--- 训练
人工智能·算法·机器学习
深圳市方中禾科技5 小时前
FZH1625 LCD 驱动芯片深度评测与实战指南
算法·led
我不会起名字3226 小时前
一天一道算法题(34):回溯法的经典例题(子集)
java·数据结构·python·算法·golang·深度优先·力扣
huang5791478 小时前
哈希算法的抗碰撞机制与安全性增强策略4
算法
林浩杨_8 小时前
SIGIR 2026|南京大学:Video-GAR:“通过生成 Query 来验证视频语义理解”的生成增强范式
论文阅读·人工智能·算法
Logic1018 小时前
C语言/数据结构位运算题解:异或XOR找出货船中的“独特载货量“——只出现一次的数字
c语言·数据结构·数组·位运算·时间复杂度·算法题·异或性质