Skip to content

Binary Search #21

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 7, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions BinarySearch.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
#include <stdio.h>

/* If x in into array return 0, else 1 */
int binarySearch(int[], int, int, int);

int main() {
int arr[] = {5, 15, 24, 32, 56, 89};
int size_of_array = sizeof(arr) / sizeof(int);
/* Check if 24 is into arr */
printf("%d\n", binarySearch(arr, 24, 0, size_of_array-1));
/* Check if 118 is into arr */
printf("%d\n", binarySearch(arr, 118, 0, size_of_array-1));
return 0;
}

int binarySearch(int array[], int number, int start, int end) {
if(start >= end) {
return array[start] == number ? 0 : 1;
}

int tmp = (int) end / 2;
if(number == array[tmp]) {
return 0;
} else if(number > array[tmp]) {
return binarySearch(array, number, start, tmp);
} else {
return binarySearch(array, number, tmp, end);
}
}