What are the steps of a binary search?
-find middle in an the ordered list ( n+1 ÷ 2 if odd number)
-if this is the item your looking for stop the search
-if it's not then compare the item your looking for to the middle term and see if its higher or lower
-if it's higher, remove the lower half of the list
-if it's lower, remove the higher half of the list
-repeat steps until item is found