Last active
December 27, 2020 13:12
-
-
Save powerdefy/95cc4c3a2860e077a710ba2356a1c045 to your computer and use it in GitHub Desktop.
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
# from https://web.facebook.com/groups/ThaiPGAssociateSociety/permalink/1683383838539545/ | |
def binarySearch (A, l, r): | |
if r >= l: | |
k = l + (r - l) // 2 | |
if k + 1 == A[k]: | |
return k | |
elif k + 1 > A[k] : | |
return binarySearch(A, k + 1, r) | |
else: | |
return binarySearch(A, l, k-1) | |
else: | |
return -1 | |
arr = [-4,-3,-1,0,1,2,6,8,11,13,14,19,20,24,26,35,48,49,80,90,92] | |
assert binarySearch(arr, 0, len(arr) - 1) == 7 | |
arr = [0] | |
assert binarySearch(arr, 0, len(arr) - 1) == -1 | |
arr = [1] | |
assert binarySearch(arr, 0, len(arr) - 1) == 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
index start with 1