2020-09-17 07:41:10 +00:00
|
|
|
"""
|
|
|
|
Pure Python implementation of a binary search algorithm.
|
|
|
|
|
|
|
|
For doctests run following command:
|
|
|
|
python3 -m doctest -v simple_binary_search.py
|
|
|
|
|
|
|
|
For manual testing run:
|
|
|
|
python3 simple_binary_search.py
|
|
|
|
"""
|
2020-09-23 11:30:13 +00:00
|
|
|
from __future__ import annotations
|
2020-09-17 07:41:10 +00:00
|
|
|
|
|
|
|
|
2020-09-23 11:30:13 +00:00
|
|
|
def binary_search(a_list: list[int], item: int) -> bool:
|
2020-09-17 07:41:10 +00:00
|
|
|
"""
|
|
|
|
>>> test_list = [0, 1, 2, 8, 13, 17, 19, 32, 42]
|
2022-10-27 20:52:00 +00:00
|
|
|
>>> binary_search(test_list, 3)
|
2020-09-17 07:41:10 +00:00
|
|
|
False
|
2022-10-27 20:52:00 +00:00
|
|
|
>>> binary_search(test_list, 13)
|
2020-09-17 07:41:10 +00:00
|
|
|
True
|
2022-10-27 20:52:00 +00:00
|
|
|
>>> binary_search([4, 4, 5, 6, 7], 4)
|
2020-09-17 07:41:10 +00:00
|
|
|
True
|
2022-10-27 20:52:00 +00:00
|
|
|
>>> binary_search([4, 4, 5, 6, 7], -10)
|
2020-09-17 07:41:10 +00:00
|
|
|
False
|
2022-10-27 20:52:00 +00:00
|
|
|
>>> binary_search([-18, 2], -18)
|
2020-09-17 07:41:10 +00:00
|
|
|
True
|
2022-10-27 20:52:00 +00:00
|
|
|
>>> binary_search([5], 5)
|
2020-09-17 07:41:10 +00:00
|
|
|
True
|
2022-10-27 20:52:00 +00:00
|
|
|
>>> binary_search(['a', 'c', 'd'], 'c')
|
2020-09-17 07:41:10 +00:00
|
|
|
True
|
2022-10-27 20:52:00 +00:00
|
|
|
>>> binary_search(['a', 'c', 'd'], 'f')
|
2020-09-17 07:41:10 +00:00
|
|
|
False
|
2022-10-27 20:52:00 +00:00
|
|
|
>>> binary_search([], 1)
|
2020-09-17 07:41:10 +00:00
|
|
|
False
|
2022-10-27 20:52:00 +00:00
|
|
|
>>> binary_search([-.1, .1 , .8], .1)
|
2020-09-17 07:41:10 +00:00
|
|
|
True
|
2020-10-07 14:27:19 +00:00
|
|
|
>>> binary_search(range(-5000, 5000, 10), 80)
|
|
|
|
True
|
|
|
|
>>> binary_search(range(-5000, 5000, 10), 1255)
|
|
|
|
False
|
|
|
|
>>> binary_search(range(0, 10000, 5), 2)
|
|
|
|
False
|
2020-09-17 07:41:10 +00:00
|
|
|
"""
|
|
|
|
if len(a_list) == 0:
|
|
|
|
return False
|
|
|
|
midpoint = len(a_list) // 2
|
|
|
|
if a_list[midpoint] == item:
|
|
|
|
return True
|
|
|
|
if item < a_list[midpoint]:
|
|
|
|
return binary_search(a_list[:midpoint], item)
|
|
|
|
else:
|
2020-09-18 07:55:02 +00:00
|
|
|
return binary_search(a_list[midpoint + 1 :], item)
|
2020-09-17 07:41:10 +00:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
user_input = input("Enter numbers separated by comma:\n").strip()
|
|
|
|
sequence = [int(item.strip()) for item in user_input.split(",")]
|
|
|
|
target = int(input("Enter the number to be found in the list:\n").strip())
|
|
|
|
not_str = "" if binary_search(sequence, target) else "not "
|
|
|
|
print(f"{target} was {not_str}found in {sequence}")
|