Skip to content
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

Added Binary Search #27

Merged
merged 1 commit into from
Sep 25, 2020
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 Sorting_Searching/Binary_Search.py
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")