*nix Documentation Project
·  Home
 +   man pages
·  Linux HOWTOs
·  FreeBSD Tips
·  *niX Forums

  man pages->FreeBSD man pages -> bsearch (3)              
Title
Content
Arch
Section
 

BSEARCH(3)

Contents


NAME    [Toc]    [Back]

     bsearch -- binary search of a sorted table

LIBRARY    [Toc]    [Back]

     Standard C Library (libc, -lc)

SYNOPSIS    [Toc]    [Back]

     #include <stdlib.h>

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

DESCRIPTION    [Toc]    [Back]

     The bsearch() function searches an array of nmemb objects, the initial
     member of which is pointed to by base, for a member that matches the
     object pointed to by key.	The size of each member of the array is specified
 by size.

     The contents of the array should be in ascending sorted order according
     to the comparison function referenced by compar.  The compar routine is
     expected to have two arguments which point to the key object and to an
     array member, in that order, and should return an integer less than,
     equal to, or greater than zero if the key object is found, respectively,
     to be less than, to match, or be greater than the array member.

RETURN VALUES    [Toc]    [Back]

     The bsearch() function returns a pointer to a matching member of the
     array, or a null pointer if no match is found.  If two members compare as
     equal, which member is matched is unspecified.

SEE ALSO    [Toc]    [Back]

      
      
     db(3), lsearch(3), qsort(3)

STANDARDS    [Toc]    [Back]

     The bsearch() function conforms to ISO/IEC 9899:1990 (``ISO C89'').


FreeBSD 5.2.1			April 19, 1994			 FreeBSD 5.2.1
[ Back ]
 Similar pages
Name OS Title
bsearch IRIX binary search a sorted table
bsearch Linux binary search of a sorted array.
bsearch Tru64 Performs a binary search
twalk Tru64 Manage binary search trees
twalk FreeBSD manipulate binary search trees
tfind FreeBSD manipulate binary search trees
tdelete FreeBSD manipulate binary search trees
tsearch Tru64 Manage binary search trees
tfind NetBSD manipulate binary search trees
tsearch OpenBSD manipulate binary search trees
Copyright © 2004-2005 DeniX Solutions SRL
newsletter delivery service