-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathBinraysearch.py
34 lines (24 loc) · 870 Bytes
/
Binraysearch.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
def binarySearch(arr, targetVal):
min = 0
max = len(arr) - 1
iter = 1
while len(arr):
if max < min:
return -1
guess = int((min + max)/2)
if arr[guess] == targetVal:
print("We are on iter: " + str(iter))
print("The guess is " + str(arr[guess]))
print("we found it!")
return guess
elif arr[guess] < targetVal:
min = guess + 1
elif arr[guess] > targetVal:
max = guess - 1
print("We are on iter: " + str(iter))
print("The guess is " + str(arr[guess]))
iter += 1
values = [10, 20, 24, 25, 30, 56, 67, 68, 69, 73, 78, 80, 100, 140, 200, 205]
# the output will be the index where the target value is found
result = binarySearch(values, 20)
print("the index of target value is: " + str(result))