Q:

Write a C Program to search an element in an array using Binary search

0

Write a C Program to search an element in an array using Binary search. Here’s simple Program to search an element in an array using Binary search in C Programming Language.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

What is an Array ?


Arrays a kind of data structure that can store a fixed-size sequential collection of elements of the same type. An array is used to store a collection of data, but it is often more useful to think of an array as a collection of variables of the same type.

 
 

Instead of declaring individual variables, such as number0, number1, …, and number99, you declare one array variable such as numbers and use numbers[0], numbers[1], and …, numbers[99] to represent individual variables. A specific element in an array is accessed by an index.

All arrays consist of contiguous memory locations. The lowest address corresponds to the first element and the highest address to the last element.


Here is source code of the C Program to search an element in an array using Binary search. The C program is successfully compiled and run(on Codeblocks) on a Windows system. The program output is also shown in below.

 

SOURCE CODE : :

/*  C Program to search an element in an array using Binary search  */

#include <stdio.h>
int main(){
   int i, first, last, middle, n, search, array[100];
   printf("Enter number of elements :: ");
   scanf("%d",&n);
   printf("\nEnter %d integers :: \n", n);
   for ( i = 0 ; i < n ; i++ )
   {
       printf("\nEnter %d value :: ", i+1);
       scanf("%d",&array[i]);
   }

   printf("\nEnter value to search :: ");
   scanf("%d",&search);
    first = 0;
   last = n - 1;
   middle = (first+last)/2;
    while( first <= last ){
        if ( array[middle] < search )
                first = middle + 1;
        else if ( array[middle] == search ) {
                printf("\n %d found at location %d.\n", search, middle+1);
                break;
        }
        else
                last = middle - 1;
        middle = (first + last)/2;
   }
   if ( first > last )
      printf("Not found! %d is not present in the list.\n", search);
return 0;
}

OUTPUT : :


/*  C Program to search an element in an array using Binary search  */

Enter number of elements :: 6

Enter 6 integers ::

Enter 1 value :: 1

Enter 2 value :: 2

Enter 3 value :: 3

Enter 4 value :: 4

Enter 5 value :: 5

Enter 6 value :: 6

Enter value to search :: 4

 4 found at location 4.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

C Arrays Solved Programs – C Programming

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
Write a C Program to search an element in an array... >>
<< Write a C program to sort even and odd elements of...