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 |
any |
any |
any |
any |
EINVAL |
any |
NULL |
any |
!= 0 |
any |
EINVAL |
any |
any |
any |
any |
= 0 |
EINVAL |
any |
any |
NULL |
一 |
any |
EINVAL |
備註
bsearch_s 函式大小執行排序的 num 陣列元素,每個的二進位搜尋 width 位元組。 base 值是指向要搜尋的陣列的基底,且 key 是要搜尋的值。 compare 參數是一個指針,指向與存取陣列元素比較後,要求機碼並傳回指定其關聯性的下列其中一個值的使用者提供的常式:
compare 常式傳回的值 |
說明 |
---|---|
< 0 |
索引鍵小於陣列元素。 |
0 |
索引鍵與陣列元素相等。 |
> 0 |
索引鍵大於陣列元素。 |
context 指標可能很有用,如果被搜尋的資料結構為物件的一部分,因此,比較函式需要存取物件的成員。 compare 函式可以將空指標轉型為適當的物件型別,然後存取該物件的成員。 因為其他內容可以用來避免關於使用靜態變數讓 compare 函式可以存取資料的重入性錯誤 ,則 context 參數加入使 bsearch_s 更安全。
需求
常式 |
必要的標頭 |
---|---|
bsearch_s |
<stdlib.h> 和 <search.h> |
如需其他相容性資訊,請參閱<簡介>中的 相容性。
範例
這個程式使用qsort_s排序字串陣列,然後使用 bsearch_s 尋找文字「Cat」。
// 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" );
}