当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C语言 bsearch()用法及代码示例



描述

C库函数void *bsearch(const void *key, const void *base, size_t nitems, size_t size, int (*compar)(const void *, const void *))函数搜索一个数组nitems对象,其初始成员被指向base, 对于与指向的对象匹配的成员,通过key.数组每个成员的大小由size

数组的内容应根据引用的比较函数按升序排列compar

声明

以下是 bsearch() 函数的声明。

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

参数

  • key- 这是指向用作搜索键的对象的指针,type-casted 作为 void*。

  • base - 这是指向执行搜索的数组的第一个对象的指针,type-casted 作为 void*。

  • nitems- 这是 base 指向的数组中的元素数。

  • size- 这是数组中每个元素的字节大小。

  • compare- 这是比较两个元素的函数。

返回值

此函数返回指向数组中与搜索键匹配的条目的指针。如果未找到键,则返回 NULL 指针。

示例

下面的例子展示了 bsearch() 函数的用法。

#include <stdio.h>
#include <stdlib.h>


int cmpfunc(const void * a, const void * b) {
   return ( *(int*)a - *(int*)b );
}

int values[] = { 5, 20, 29, 32, 63 };

int main () {
   int *item;
   int key = 32;

   /* using bsearch() to find value 32 in the array */
   item = (int*) bsearch (&key, values, 5, sizeof (int), cmpfunc);
   if( item != NULL ) {
      printf("Found item = %d\n", *item);
   } else {
      printf("Item = %d could not be found\n", *item);
   }
   
   return(0);
}

让我们编译并运行上面的程序,将产生以下结果 -

Found item = 32

相关用法


注:本文由纯净天空筛选整理自 C library function - bsearch()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。