-
Notifications
You must be signed in to change notification settings - Fork 110
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #27 from GSNCodes/binary-search
Added Binary Search
- Loading branch information
Showing
1 changed file
with
31 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# Returns index of x in the list/array if present, else -1 | ||
def binarySearch(arr, l, r, x): | ||
|
||
if r >= l: | ||
mid = l + (r - l) // 2 | ||
|
||
|
||
if arr[mid] == x: | ||
return mid | ||
|
||
|
||
elif arr[mid] > x: | ||
return binarySearch(arr, l, mid-1, x) | ||
|
||
|
||
else: | ||
return binarySearch(arr, mid + 1, r, x) | ||
|
||
else: | ||
return -1 | ||
|
||
if __name__ == '__main__': | ||
arr = [ 2, 4, 6, 8, 10] | ||
x = 10 | ||
|
||
result = binarySearch(arr, 0, len(arr)-1, x) | ||
|
||
if result != -1: | ||
print ("Element is present at index % d" % result) | ||
else: | ||
print ("Element is not present in array") |