bsearch_s
执行了排序数组的二进制搜索。 这是 bsearch 的版本与安全增强的 CRT中的安全功能如中所述。
void *bsearch_s(
const void *key,
const void *base,
size_t num,
size_t width,
int ( __cdecl *compare ) ( void *, const void *key, const void *datum),
void * context
);
参数
key
搜索的对象。base
要搜索的基础数据的指针。num
元素的数目。width
元素的宽度。compare
比较两个元素的回调函数。 第一个参数是 context 指针。 第二个参数是指向搜索的 key 。 第三个参数是指向数组元素与 key比较。context
对于比较函数中访问的对象的指针。
返回值
bsearch_s 返回指向key 出现在数组的指向由 base。 如果找不到 key ,则函数返回 NULL。 如果数组不按升序顺序或包含重复具有相同的密钥的记录,结果是不可预知的。
如果传递的参数无效传递给函数,无效参数调用处理程序 参数验证如中所述。 如果执行允许继续, errno设置为 EINVAL ,函数返回 NULL。 有关更多信息,请参见 errno、_doserrno、_sys_errlist和_sys_nerr。
错误状态
key |
base |
compare |
num |
width |
errno |
NULL |
任何 |
任何 |
任何 |
任何 |
EINVAL |
任何 |
NULL |
任何 |
!= 0 |
任何 |
EINVAL |
任何 |
任何 |
任何 |
任何 |
= 0 |
EINVAL |
任何 |
任何 |
NULL |
an |
任何 |
EINVAL |
备注
bsearch_s 功能的大小执行排序的一些 num 元素,每个的二进制搜索 width 字节。 base 值是指向要搜索的数组的基础,并且, key 所查找的值。 compare 参数是指向与数组元素比较请求的键并返回指定它们之间的关系以下值之一的用户提供的实例:
compare 实例返回的值 |
说明 |
---|---|
< 0 |
键比数组元素小于。 |
0 |
键与数组元素相等。 |
> 0 |
键比数组元素大。 |
context 指针可能很有用,如果要搜索的数据结构是对象的一部分,并且,比较函数需要对象的成员。 compare 功能可以转换无效指针到该对象的相应对象类型和访问成员。 ,因为附加的上下文可用于避免重新进入该 bug 与使用静态变量使数据可用于 compare 功能, context 参数的添加可 bsearch_s 更加安全。
要求
实例 |
必需的头 |
---|---|
bsearch_s |
stdlib.h 和 search.h |
有关其他的兼容性信息,请参见中介绍的 兼容性 。
示例
此过程与排序 qsort_s的字符串数组,然后使用 bsearch_s 查找单词 “猫”。
// crt_bsearch_s.cpp
// This program uses bsearch_s to search a string array,
// passing a locale as the context.
// compile with: /EHsc
#include <stdlib.h>
#include <stdio.h>
#include <search.h>
#include <process.h>
#include <locale.h>
#include <locale>
#include <windows.h>
using namespace std;
// The sort order is dependent on the code page. Use 'chcp' at the
// command line to change the codepage. When executing this application,
// the command prompt codepage must match the codepage used here:
#define CODEPAGE_850
#ifdef CODEPAGE_850
#define ENGLISH_LOCALE "English_US.850"
#endif
#ifdef CODEPAGE_1252
#define ENGLISH_LOCALE "English_US.1252"
#endif
// The context parameter lets you create a more generic compare.
// Without this parameter, you would have stored the locale in a
// static variable, thus making it vulnerable to thread conflicts
// (if this were a multithreaded program).
int compare( void *pvlocale, char **str1, char **str2)
{
char *s1 = *str1;
char *s2 = *str2;
locale& loc = *( reinterpret_cast< locale * > ( pvlocale));
return use_facet< collate<char> >(loc).compare(
s1, s1+strlen(s1),
s2, s2+strlen(s2) );
}
int main( void )
{
char *arr[] = {"dog", "pig", "horse", "cat", "human", "rat", "cow", "goat"};
char *key = "cat";
char **result;
int i;
/* Sort using Quicksort algorithm: */
qsort_s( arr,
sizeof(arr)/sizeof(arr[0]),
sizeof( char * ),
(int (*)(void*, const void*, const void*))compare,
&locale(ENGLISH_LOCALE) );
for( i = 0; i < sizeof(arr)/sizeof(arr[0]); ++i ) /* Output sorted list */
printf( "%s ", arr[i] );
/* Find the word "cat" using a binary search algorithm: */
result = (char **)bsearch_s( &key,
arr,
sizeof(arr)/sizeof(arr[0]),
sizeof( char * ),
(int (*)(void*, const void*, const void*))compare,
&locale(ENGLISH_LOCALE) );
if( result )
printf( "\n%s found at %Fp\n", *result, result );
else
printf( "\nCat not found!\n" );
}