...
/Solution: Multiple Search with Duplicates
Solution: Multiple Search with Duplicates
Solution for the Binary Search with Duplicates Problem.
Solution
Given a key , our goal is to find the first (top) occurrence of this key in the array . For example, if and the key is , then the first occurrence of this key is located at index . 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.
:
...