Movatterモバイル変換


[0]ホーム

URL:


cppreference.com
Namespaces
Variants
    Actions

      bsearch, bsearch_s

      From cppreference.com
      <c‎ |algorithm
       
       
      Algorithms
      bsearchbsearch_s
      (C11)
       
      Defined in header<stdlib.h>
      void* bsearch(constvoid*key,constvoid*ptr,size_t count,size_t size,
                     int(*comp)(constvoid*,constvoid*));
      (1)
      void* bsearch_s(constvoid*key,constvoid*ptr, rsize_t count, rsize_t size,

                       int(*comp)(constvoid*,constvoid*,void*),

                       void*context);
      (2)(since C11)
      /*QVoid*/* bsearch(constvoid*key,/*QVoid*/*ptr,size_t count,size_t size,
                         int(*comp)(constvoid*,constvoid*));
      (3)(since C23)
      /*QVoid*/* bsearch_s(constvoid*key,/*QVoid*/*ptr, rsize_t count, rsize_t size,

                           int(*comp)(constvoid*,constvoid*,void*),

                           void*context);
      (4)(since C23)
      1) Finds an element equal to element pointed to bykey in an array pointed to byptr. The array containscount elements ofsize bytes and must be partitioned with respect tokey, that is, all the elements that compare less than must appear before all the elements that compare equal to, and those must appear before all the elements that compare greater than the key object. A fully sorted array satisfies these requirements. The elements are compared using function pointed to bycomp. The behavior is undefined if the array is not already partitioned with respect to*key in ascending order according to the same criterion thatcomp uses.
      2) Same as(1), except that the additional state argumentcontext is passed tocomp and that the following errors are detected at runtime and call the currently installedconstraint handler function:
      • count orsize is greater thanRSIZE_MAX
      • key,ptr orcomp is a null pointer (unlesscount is zero)
      As with all bounds-checked functions,bsearch_s (and the corresponding type-generic macro)(since C23) is only guaranteed to be available if__STDC_LIB_EXT1__ is defined by the implementation and if the user defines__STDC_WANT_LIB_EXT1__ to the integer constant1 before including<stdlib.h>.
      3,4) Type-generic macros equivalent to(1) and(2) respectively. LetT be a unqualified object type (includingvoid).
      • Ifptr is of typeconst T*, the return type isconstvoid*.
      • Otherwise, ifptr is of typeT*, the return type isvoid*.
      • Otherwise, the behavior is undefined.
      If a macro definition of each of these generic functions is suppressed to access an actual function (e.g. if(bsearch),(bsearch_s), or a function pointer is used), the actual function declaration(1) or(2) becomes visible.

      If the array contains several elements thatcomp would indicate as equal to the element searched for, then it is unspecified which element the function will return as the result.

      Direct usages of actual functions(1) and(2) are deprecated.

      (since C23)

      Contents

      [edit]Parameters

      key - pointer to the element to search for
      ptr - pointer to the array to examine
      count - number of element in the array
      size - size of each element in the array in bytes
      comp - comparison function which returns ​a negative integer value if the first argument isless than the second, a positive integer value if the first argument isgreater than the second and zero if the arguments are equivalent.key is passed as the first argument, an element from the array as the second.

      The signature of the comparison function should be equivalent to the following:

       int cmp(constvoid*a,constvoid*b);

      The function must not modify the objects passed to it and must return consistent results when called for the same objects, regardless of their positions in the array.

      context - state of the comparator (e.g., collating sequence), passed tocomp as the third argument

      [edit]Return value

      1) Pointer to an element in the array that compares equal to*key, or null pointer if such element has not been found.
      2) Same as(1), except that the null pointer is also returned on runtime constraints violations.
      3,4) Same as(1) and(2) respectively, except that cv-qualification is adjusted.

      [edit]Notes

      Despite the name, neither C nor POSIX standards require this function to be implemented using binary search or make any complexity guarantees.

      Unlike other bounds-checked functions,bsearch_s does not treat arrays of zero size as a runtime constraint violation and instead indicates element not found (the other function that accepts arrays of zero size isqsort_s).

      Untilbsearch_s, users ofbsearch often used global variables to represent the state of the comparator.

      [edit]Example

      Run this code
      #include <stdlib.h>#include <stdio.h> struct data{int nr;charconst*value;} dat[]={{1,"Foo"},{2,"Bar"},{3,"Hello"},{4,"World"}}; int data_cmp(voidconst*lhs,voidconst*rhs){struct dataconst*const l= lhs;struct dataconst*const r= rhs; if(l->nr< r->nr)return-1;elseif(l->nr> r->nr)return1;elsereturn0; // return (l->nr > r->nr) - (l->nr < r->nr); // possible shortcut// return l->nr - r->nr; // erroneous shortcut (fails if INT_MIN is present)} int main(void){struct data key={ .nr=3};struct dataconst*res= bsearch(&key, dat,sizeof dat/sizeof dat[0],sizeof dat[0], data_cmp);if(res){printf("No %d: %s\n", res->nr, res->value);}else{printf("No %d not found\n", key.nr);}}

      Output:

      No 3: Hello

      [edit]References

      • C17 standard (ISO/IEC 9899:2018):
      • 7.22.5.1 The bsearch function (p: 258)
      • K.3.6.3.1 The bsearch_s function (p: 441-442)
      • C11 standard (ISO/IEC 9899:2011):
      • 7.22.5.1 The bsearch function (p: 355)
      • K.3.6.3.1 The bsearch_s function (p: 608-609)
      • C99 standard (ISO/IEC 9899:1999):
      • 7.20.5.1 The bsearch function (p: 318-319)
      • C89/C90 standard (ISO/IEC 9899:1990):
      • 4.10.5.1 The bsearch function

      [edit]See also

      sorts a range of elements with unspecified type
      (function)[edit]
      Retrieved from "https://en.cppreference.com/mwiki/index.php?title=c/algorithm/bsearch&oldid=144569"

      [8]ページ先頭

      ©2009-2025 Movatter.jp