home *** CD-ROM | disk | FTP | other *** search
- /*
- Listing 19.3 Bsearch
- Author: Joe Booth
- Excerpted from "Clipper 5: A Developer's Guide"
- Copyright (c) 1991 M&T Books
- 501 Galveston Drive
- Redwood City, CA 94063-4728
- (415) 366-3600
- */
-
- function Bsearch(nfield, the_key)
- LOCAL retval := .F., bottom := Lastrec(), top := 1, mid := 0
- while top <= bottom .and. ! retval
- mid := int( (top + bottom) /2 )
- goto mid
- if fieldget(nfield) == the_key
- retval :=.T.
- elseif fieldget(nfield) < the_key
- bottom := mid + 1
- else
- top := mid - 1
- endif
- enddo
- return retval
-
- // end of file CHP1903.PRG
-