Calculate Number of Comparisons in Binary Search: How?
The number of comparisons is telling you how many searches a computer has to make before finding an item. For a binary function, the maximum number of comparisons is found by taking the number of items in the list. The number of times you can divide that by two before it rounds down to one is the number of comparisons.