...
/Solution: Sorted Array Multiple Search
Solution: Sorted Array Multiple Search
Solution for the Sorted Array Multiple Search Problem.
Solution
To solve the Multiple Search Problem, let’s first look at the Binary Search Problem to search a single key in a sorted array of keys.
Sorted Array Search Problem
Search a key in a sorted array of keys.
Input: A sorted array of distinct integers (i.e.,) and an integer .
Output: Check whether occurs in .
A naive way to solve this problem is to scan the array (running time ). The algorithm below solves the problem in time. It is initialized by setting ...