...

/

Solution: Multiple Search with Duplicates

Solution: Multiple Search with Duplicates

Solution for the Binary Search with Duplicates Problem.

We'll cover the following...

Solution

Given a key qq, our goal is to find the first (top) occurrence of this key in the array KK. For example, if K={3,6,6,7,7,7,7,9}K = \{3,6,6,7,7,7,7,9\} and the key qq is 77, then the first occurrence of this key is located at index 33. Of course, we can find one of the occurrences of the key by simply launching the binary search. Afterward, we can find the first occurrence of the key by consecutively checking the element before the position of the found element, as illustrated in the pseudocode below.


 NaiveBinarySearchWithDuplicates(K[0n1],q)NaiveBinarySearchWithDuplicates(K [0\dots n − 1], q):
 minIndex0minIndex ← 0
 maxIndexn1maxIndex←n−1 ...