Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,950 questions

51,892 answers

573 users

How to implement binary search algorithm in C

1 Answer

0 votes
#include <stdio.h>

int binarySearch(int array[], int element, int low, int high) {
    while (low <= high) {
        int mid = low + (high - low) / 2;
 
        if (array[mid] == element)
            return mid;
 
        if (array[mid] < element)
            low = mid + 1;
        else
            high = mid - 1;
    }
     
    return -1;
}
 
int main(void) {
    int array[] = {3, 4, 6, 8, 9, 10, 12, 20, 27, 30, 31};
    int number_to_find = 20;
 
    int index = binarySearch(array, number_to_find, 0, sizeof(array)/sizeof(array[0]));
         
    if (index == -1) 
        puts("Not found");
    else
        printf("Found at index: %d", index);
}
 
 
 
 
/*
run:
 
Found at index: 7
 
*/

 



answered Jan 18, 2022 by avibootz
edited Jan 18, 2022 by avibootz

Related questions

1 answer 150 views
1 answer 77 views
1 answer 94 views
1 answer 86 views
1 answer 74 views
1 answer 138 views
3 answers 246 views
...