home *** CD-ROM | disk | FTP | other *** search
- /*
- * low level estimate key distance routine
- *
- * This program is the CONFIDENTIAL and PROPRIETARY property
- * of FairCom(R) Corporation. Any unauthorized use, reproduction or
- * transfer of this program is strictly prohibited.
- *
- * Copyright (c) 1984, 1985, 1986, 1987, 1988, 1989 FairCom Corporation
- * (Subject to limited distribution and
- * restricted disclosure only.)
- * *** ALL RIGHTS RESERVED ***
- *
- * 4006 West Broadway
- * Columbia, MO 65203
- *
- *
- * c-tree(R) Version 4.3
- * Release C
- * February 7, 1989 17:30
- *
- */
-
- #include "ctstdr.h" /* standard i/o header */
- #include "ctoptn.h" /* c-tree configuration options */
- #include "cterrc.h" /* c-tree error codes */
- #include "ctstrc.h" /* c-tree data structures */
- #include "ctgvar.h" /* c-tree global variables */
-
- static COUNT binsrc(keyno,i,flag,idxval)
- COUNT keyno,i,flag;
- TEXT *idxval;
- {
- TEXT frcval[MAXLEN];
-
- POINTER FRCKEY();
- COUNT compar();
-
- while (i > 2) {
- i /= 2;
- if (FRCKEY(keyno,frcval,flag) == DRNZERO)
- return(DRNZERO);
- if (compar(idxval,frcval,ct_key + keyno) <= 0)
- flag -= i;
- else
- flag += i;
- }
- return(flag);
- }
-
-
- /*
- ESTKEY returns the estimated number of entries between the key values
- pointed to by target1 and target2.
- */
-
- POINTER ESTKEY(keyno,target1, target2)
- COUNT keyno;
- TEXT *target1,*target2;
- {
- LONG totval;
- COUNT flag1,flag2;
- COUNT i;
-
- COUNT binsrc(),compar();
- LONG IDXENT();
-
- if ((totval = IDXENT(keyno)) == 0L)
- return(DRNZERO);
-
- flag1 = binsrc(keyno,50,50,target1);
- if (compar(target1,target2,ct_key + keyno) <= 0) {
- i = (100 - flag1) / 2;
- flag2 = flag1 + i;
- } else {
- i = flag1 / 2;
- flag2 = flag1 - i;
- }
- flag2 = binsrc(keyno,i,flag2,target2);
-
- if ((flag2 -= flag1) < 0) flag2 = - flag2;
- return ((flag2 * totval + totval / 2) / 100);
- }
-
- /* end of ctestm.c */
-