Question: Which one is not a true about the following algorithm for searching in a sorted array A [ 0 . . n 1 ] .

Which one is not a true about the following algorithm for searching in a sorted array A[0..n 1]. If n =1, simply compare the search key K with the single element of the array; otherwise, search recursively by comparing K with A[n/3], and if K is larger, compare it with A[2n/3] to determine in which third of the array to continue the search?
a. What design technique is this algorithm based on?
b. Set up a recurrence for the number of key comparisons in the worst case. You may assume that n =3k.
c. Solve the recurrence for n =3k.
d. Compare this algorithms efficiency with that of binary search.
e. None of the above

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!