...

/

Solution: Sorted Array Multiple Search

Solution: Sorted Array Multiple Search

Solution for the Sorted Array Multiple Search Problem.

We'll cover the following...

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.

\rule[0 pt]{1000 pt}{0. pt}

Sorted Array Search Problem

Search a key in a sorted array of keys.

Input: A sorted array KK =[k0,,kn1]= [k_{0},\ldots,k_{n-1}] of distinct integers (i.e.,k0<k1<<kn1k_{0} < k_{1} <\ldots< k_{n-1}) and an integer qq.

Output: Check whether qq occurs in KK.

\rule[0 pt]{1000 pt}{0. pt}

A naive way to solve this problem is to scan the array KK (running time O(n)O(n)). The BinarySearchBinarySearch algorithm below solves the problem in O(log(n))O(log (n)) time. It is initialized by setting minIndexminIndex ...