Binary search
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
def binary_search(target, arr): | |
low = 0 | |
high = len(arr) - 1 # it starts with index 0 | |
while low <= high: | |
mid = (low + high) // 2 # it represents the index of the middle element | |
if arr[mid] < target: | |
low = mid + 1 | |
else: | |
high = mid - 1 | |
return low != len(arr) and arr[low] == target |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment