Question: You are given a sorted array S[1, . . . , n] of n (distinct) numbers, i.e., the numbers in the array are arranged in

You are given a sorted array S[1, . . . , n] of n (distinct) numbers, i.e., the numbers in the array are arranged in increasing order: S[1] < S[2] < < S[n]. Give a recursive algorithm to search for a given element (say x) in the array. If x is present in the array, the algorithm should return the index of the position where it is present, otherwise it should return 0. Your algorithm should take O(log n) comparisons. Give pseudocode of your algorithm and argue that your algorithm indeed takes O(log n) comparisons (in the worst case).

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!