11573Srgrimes/*
21573Srgrimes * Copyright (c) 1990, 1993
31573Srgrimes *	The Regents of the University of California.  All rights reserved.
41573Srgrimes *
51573Srgrimes * Redistribution and use in source and binary forms, with or without
61573Srgrimes * modification, are permitted provided that the following conditions
71573Srgrimes * are met:
81573Srgrimes * 1. Redistributions of source code must retain the above copyright
91573Srgrimes *    notice, this list of conditions and the following disclaimer.
101573Srgrimes * 2. Redistributions in binary form must reproduce the above copyright
111573Srgrimes *    notice, this list of conditions and the following disclaimer in the
121573Srgrimes *    documentation and/or other materials provided with the distribution.
13251069Semaste * 3. Neither the name of the University nor the names of its contributors
141573Srgrimes *    may be used to endorse or promote products derived from this software
151573Srgrimes *    without specific prior written permission.
161573Srgrimes *
171573Srgrimes * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
181573Srgrimes * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
191573Srgrimes * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
201573Srgrimes * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
211573Srgrimes * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
221573Srgrimes * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
231573Srgrimes * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
241573Srgrimes * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
251573Srgrimes * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
261573Srgrimes * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
271573Srgrimes * SUCH DAMAGE.
281573Srgrimes */
291573Srgrimes
301573Srgrimes#if defined(LIBC_SCCS) && !defined(lint)
311573Srgrimesstatic char sccsid[] = "@(#)bsearch.c	8.1 (Berkeley) 6/4/93";
321573Srgrimes#endif /* LIBC_SCCS and not lint */
3392889Sobrien#include <sys/cdefs.h>
3492889Sobrien__FBSDID("$FreeBSD$");
351573Srgrimes
361573Srgrimes#include <stddef.h>
371573Srgrimes#include <stdlib.h>
381573Srgrimes
391573Srgrimes/*
401573Srgrimes * Perform a binary search.
411573Srgrimes *
421573Srgrimes * The code below is a bit sneaky.  After a comparison fails, we
431573Srgrimes * divide the work in half by moving either left or right. If lim
441573Srgrimes * is odd, moving left simply involves halving lim: e.g., when lim
451573Srgrimes * is 5 we look at item 2, so we change lim to 2 so that we will
461573Srgrimes * look at items 0 & 1.  If lim is even, the same applies.  If lim
471573Srgrimes * is odd, moving right again involes halving lim, this time moving
481573Srgrimes * the base up one item past p: e.g., when lim is 5 we change base
491573Srgrimes * to item 3 and make lim 2 so that we will look at items 3 and 4.
501573Srgrimes * If lim is even, however, we have to shrink it by one before
511573Srgrimes * halving: e.g., when lim is 4, we still looked at item 2, so we
521573Srgrimes * have to make lim 3, then halve, obtaining 1, so that we will only
531573Srgrimes * look at item 3.
541573Srgrimes */
551573Srgrimesvoid *
561573Srgrimesbsearch(key, base0, nmemb, size, compar)
5792889Sobrien	const void *key;
581573Srgrimes	const void *base0;
591573Srgrimes	size_t nmemb;
6092889Sobrien	size_t size;
6192905Sobrien	int (*compar)(const void *, const void *);
621573Srgrimes{
6392889Sobrien	const char *base = base0;
6492889Sobrien	size_t lim;
6592889Sobrien	int cmp;
6692889Sobrien	const void *p;
671573Srgrimes
681573Srgrimes	for (lim = nmemb; lim != 0; lim >>= 1) {
691573Srgrimes		p = base + (lim >> 1) * size;
701573Srgrimes		cmp = (*compar)(key, p);
711573Srgrimes		if (cmp == 0)
721573Srgrimes			return ((void *)p);
731573Srgrimes		if (cmp > 0) {	/* key > p: move right */
741573Srgrimes			base = (char *)p + size;
751573Srgrimes			lim--;
761573Srgrimes		}		/* else move left */
771573Srgrimes	}
781573Srgrimes	return (NULL);
791573Srgrimes}
80