C PROGRAM FOR BINARY SEARCH>>>>

                                        <<  TUTORIAL NO:-04 >>
C PROGRAM CODING FOR SEARCH OF BINARY TREE:::>>>>
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5.    int c, first, last, middle, n, search, array[100];
  6.  
  7.    printf("Enter number of elements\n");
  8.    scanf("%d",&n);
  9.  
  10.    printf("Enter %d integers\n", n);
  11.  
  12.    for (= 0; c < n; c++)
  13.       scanf("%d",&array[c]);
  14.  
  15.    printf("Enter value to find\n");
  16.    scanf("%d", &search);
  17.  
  18.    first = 0;
  19.    last = n - 1;
  20.    middle = (first+last)/2;
  21.  
  22.    while (first <= last) {
  23.       if (array[middle] < search)
  24.          first = middle + 1;    
  25.       else if (array[middle] == search) {
  26.          printf("%d found at location %d.\n", search, middle+1);
  27.          break;
  28.       }
  29.       else
  30.          last = middle - 1;
  31.  
  32.       middle = (first + last)/2;
  33.    }
  34.    if (first > last)
  35.       printf("Not found! %d isn't present in the list.\n", search);
  36.  
  37. return 0;  
  38. }
  39. THIS IS THE BEST PROGRAM FOR A BINARY SEARCH.
  40.                                BY SHEELAJ BABU(IIIT BGP.)
  41.                                BRANCH:-CSE...

Comments

Popular Posts