first, find the middle of start and end, an easy way to find the middle would be:
middle = (start + end) / 2.
but this has a good chance of producing an integer overflow so it’s recommended that you represent the middle as:
middle = start + (end — start) / 2
if the key is equal to the number at index middle then return middle
if ‘key’ isn’t equal to the index middle:
check if key < arr[middle] - if it is reduce your search to end = middle — 1
check if key > arr[middle] - if it is reduce your search to end = middle + 1
O(log(n))
O(1)