-
Notifications
You must be signed in to change notification settings - Fork 302
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
add binary search in c #593
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -12,43 +12,43 @@ This repository contains examples of various algorithms written on different pro | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
## Implemented Algorithms | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Algorithm | C | CPP | Java | Python | | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|:----------------------------------------------------------------------------------------------- |:-------------------------------------:|:-------------------------------------:|:-------------------------------------:|:-------------------------------------:| | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| [Euclidean GCD](https://en.wikipedia.org/wiki/Euclidean_algorithm) | [:octocat:](euclidean_gcd/C) | | [:octocat:](euclidean_gcd/Java) | [:octocat:](euclidean_gcd/Python) | | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| [Merge Sort](https://en.wikipedia.org/wiki/Merge_sort) | [:octocat:](merge_sort/C) | [:octocat:](merge_sort/Cpp) | [:octocat:](merge_sort/Java) | [:octocat:](merge_sort/Python) | | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| [QuickSort](https://en.wikipedia.org/wiki/Quicksort) | [:octocat:](quicksort/C) | | [:octocat:](quicksort/Java) | [:octocat:](quicksort/Python) | | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| [Insertion Sort](https://en.wikipedia.org/wiki/Insertion_sort) | [:octocat:](insertion_sort/C) | [:octocat:](insertion_sort/Cpp) | | [:octocat:](insertion_sort/Python) | | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| [Counting Sort](https://en.wikipedia.org/wiki/Counting_sort) | [:octocat:](counting_sort/C) | [:octocat:](counting_sort/Cpp) | | [:octocat:](counting_sort/Python) | | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| [Radix Sort](https://en.wikipedia.org/wiki/Radix_sort) | | [:octocat:](radix_sort/Cpp) | | [:octocat:](radix_sort/Python) | | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| [Binary Search](https://en.wikipedia.org/wiki/Binary_search_algorithm) | | [:octocat:](binary_search/Cpp) | | [:octocat:](binary_search/Python) | | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| [Bubble Sort](https://en.wikipedia.org/wiki/Bubble_sort) | [:octocat:](bubble_sort/C) | [:octocat:](bubble_sort/Cpp) | [:octocat:](bubble_sort/Java) | [:octocat:](bubble_sort/Python) | | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| [Shell Sort](https://en.wikipedia.org/wiki/Shellsort) | [:octocat:](shell_sort/C) | | | [:octocat:](shell_sort/Python) | | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| [Heap Sort](https://en.wikipedia.org/wiki/Heapsort) | | | | [:octocat:](heap_sort/python) | | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| [Maximum Subarray Problem](https://en.wikipedia.org/wiki/Maximum_subarray_problem) | | | | [:octocat:](/maximum_subarray/Python) | | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| [Knapsack Problem](https://en.wikipedia.org/wiki/Knapsack_problem) | | | | [:octocat:](knapsack_problem/Python) | | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| [Selecton Sort](https://en.wikipedia.org/wiki/Selection_sort) | [:octocat:](selection_sort/C) | [:octocat:](selection_sort/Cpp) | | | | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Algorithm | C | CPP | Java | Python | | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| :--------------------------------------------------------------------------------- | :---------------------------: | :-----------------------------: | :-----------------------------: | :-----------------------------------: | | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| [Euclidean GCD](https://en.wikipedia.org/wiki/Euclidean_algorithm) | [:octocat:](euclidean_gcd/C) | | [:octocat:](euclidean_gcd/Java) | [:octocat:](euclidean_gcd/Python) | | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| [Merge Sort](https://en.wikipedia.org/wiki/Merge_sort) | [:octocat:](merge_sort/C) | [:octocat:](merge_sort/Cpp) | [:octocat:](merge_sort/Java) | [:octocat:](merge_sort/Python) | | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| [QuickSort](https://en.wikipedia.org/wiki/Quicksort) | [:octocat:](quicksort/C) | | [:octocat:](quicksort/Java) | [:octocat:](quicksort/Python) | | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| [Insertion Sort](https://en.wikipedia.org/wiki/Insertion_sort) | [:octocat:](insertion_sort/C) | [:octocat:](insertion_sort/Cpp) | | [:octocat:](insertion_sort/Python) | | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| [Counting Sort](https://en.wikipedia.org/wiki/Counting_sort) | [:octocat:](counting_sort/C) | [:octocat:](counting_sort/Cpp) | | [:octocat:](counting_sort/Python) | | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| [Radix Sort](https://en.wikipedia.org/wiki/Radix_sort) | | [:octocat:](radix_sort/Cpp) | | [:octocat:](radix_sort/Python) | | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| [Binary Search](https://en.wikipedia.org/wiki/Binary_search_algorithm) | [:octocat:](binary_search/C) | [:octocat:](binary_search/Cpp) | [:octocat:](binary_search/C) | [:octocat:](binary_search/Python) | | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| [Bubble Sort](https://en.wikipedia.org/wiki/Bubble_sort) | [:octocat:](bubble_sort/C) | [:octocat:](bubble_sort/Cpp) | [:octocat:](bubble_sort/Java) | [:octocat:](bubble_sort/Python) | | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| [Shell Sort](https://en.wikipedia.org/wiki/Shellsort) | [:octocat:](shell_sort/C) | | | [:octocat:](shell_sort/Python) | | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| [Heap Sort](https://en.wikipedia.org/wiki/Heapsort) | | | | [:octocat:](heap_sort/python) | | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| [Maximum Subarray Problem](https://en.wikipedia.org/wiki/Maximum_subarray_problem) | | | | [:octocat:](/maximum_subarray/Python) | | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| [Knapsack Problem](https://en.wikipedia.org/wiki/Knapsack_problem) | | | | [:octocat:](knapsack_problem/Python) | | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| [Selecton Sort](https://en.wikipedia.org/wiki/Selection_sort) | [:octocat:](selection_sort/C) | [:octocat:](selection_sort/Cpp) | | | | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+15
to
+29
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
## Implemented Data Structures | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Data Structure | C | CPP | Java | Python | | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|:----------------------------------------------------------------------------------------------- |:-------------------------------------:|:-------------------------------------:|:-------------------------------------:|:-------------------------------------:| | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| [Queue](https://en.wikipedia.org/wiki/Queue_(abstract_data_type)) | | [:octocat:](queue/Cpp) | | | | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| [Stack](https://en.wikipedia.org/wiki/Stack_(abstract_data_type)) | [:octocat:](stack/C ) | | [:octocat:](stack/Java) | [:octocat:](stack/Python) | | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| [Linear Linked List](https://en.wikipedia.org/wiki/Linked_list) | [:octocat:](linked_list/C) | [:octocat:](linked_list/Cpp) | [:octocat:](linked_list/Java) | [:octocat:](linked_list/Python) | | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| [AVL Tree](https://en.wikipedia.org/wiki/AVL_tree) | [:octocat:](avl_tree/C) | [:octocat:](avl_tree/Cpp) | [:octocat:](avl_tree/Java) | [:octocat:](avl_tree/Python) | | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| [Binary Search Tree](https://en.wikipedia.org/wiki/Binary_search_tree) | | [:octocat:](binary_search_tree/Cpp) | | | | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| [Fenwick Tree](https://en.wikipedia.org/wiki/Fenwick_tree) | | [:octocat:](fenwick_tree/Cpp) | [:octocat:](fenwick_tree/java) | [:octocat:](fenwick_tree/Python) | | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| [Doubly Linked List](https://en.wikipedia.org/wiki/Doubly_linked_list) | [:octocat:](doubly_linked_list/c) | | | | | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Data Structure | C | CPP | Java | Python | | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| :--------------------------------------------------------------------- | :-------------------------------: | :---------------------------------: | :----------------------------: | :------------------------------: | | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| [Queue](<https://en.wikipedia.org/wiki/Queue_(abstract_data_type)>) | | [:octocat:](queue/Cpp) | | | | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| [Stack](<https://en.wikipedia.org/wiki/Stack_(abstract_data_type)>) | [:octocat:](stack/C) | | [:octocat:](stack/Java) | [:octocat:](stack/Python) | | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| [Linear Linked List](https://en.wikipedia.org/wiki/Linked_list) | [:octocat:](linked_list/C) | [:octocat:](linked_list/Cpp) | [:octocat:](linked_list/Java) | [:octocat:](linked_list/Python) | | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| [AVL Tree](https://en.wikipedia.org/wiki/AVL_tree) | [:octocat:](avl_tree/C) | [:octocat:](avl_tree/Cpp) | [:octocat:](avl_tree/Java) | [:octocat:](avl_tree/Python) | | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| [Binary Search Tree](https://en.wikipedia.org/wiki/Binary_search_tree) | | [:octocat:](binary_search_tree/Cpp) | | | | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| [Fenwick Tree](https://en.wikipedia.org/wiki/Fenwick_tree) | | [:octocat:](fenwick_tree/Cpp) | [:octocat:](fenwick_tree/java) | [:octocat:](fenwick_tree/Python) | | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| [Doubly Linked List](https://en.wikipedia.org/wiki/Doubly_linked_list) | [:octocat:](doubly_linked_list/c) | | | | | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+33
to
+41
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please, do not do unnecessary changes
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
## Sample Run | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Language | Steps | | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| --------------- | ---------------------------------------------------------------------- | | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| JavaScript | <pre>node [filename.js]</pre> | | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Python | <pre>python [filename.py]</pre> | | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| C | <pre>gcc [filename.c]<br>./a.out # unix<br>a.exe # windows</pre> | | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| CPP | <pre>g++ [filename.cpp]<br>./a.out # unix<br>a.exe # windows</pre> | | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Java | <pre>javac [filename.java]<br>java [filename]</pre> | | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Language | Steps | | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ---------- | ------------------------------------------------------------------ | | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| JavaScript | <pre>node [filename.js]</pre> | | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Python | <pre>python [filename.py]</pre> | | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| C | <pre>gcc [filename.c]<br>./a.out # unix<br>a.exe # windows</pre> | | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| CPP | <pre>g++ [filename.cpp]<br>./a.out # unix<br>a.exe # windows</pre> | | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Java | <pre>javac [filename.java]<br>java [filename]</pre> | | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+45
to
+51
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
## Contributing | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -58,6 +58,7 @@ This repository contains examples of various algorithms written on different pro | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
4. Commit your changes: `git commit -am 'Add some feature'`. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Go through [Commit Messages guidelines](CONTRIBUTING.md#write-good-commit-messages) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
5. Push to the branch: `git push origin my-new-feature` | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
6. Submit a pull request :smile: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The changes in this file is redundant. Kindly change only line that is required. |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
#include <stdio.h> | ||
|
||
int binary_search(int arr[], int start, int end, int target) { | ||
while (start <= end) { | ||
int mid = start + (end - start) / 2; | ||
if (arr[mid] == target) { | ||
return mid; | ||
} else if (arr[mid] > target) { | ||
end = mid - 1; | ||
} else { | ||
start = mid + 1; | ||
} | ||
} | ||
return -1; | ||
} | ||
|
||
int main(void) { | ||
int arr[] = {-1, 0, 3, 4, 5, 6, 7, 8, 9}; | ||
int n = sizeof(arr) / sizeof(arr[0]); | ||
int target = -1; | ||
int result = binary_search(arr, 0, n - 1, target); | ||
printf("Index of %d in array is: %d \n", target, result); | ||
return 0; | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You have listed you file at 2 places in this line, one in
C
column and other inJava
column. I hope you understand what you are doing here