1.

What are the updated values of high and low in the array if the element being searched is greater than the value at calculated index in interpolation search? (pos = current position)(a) low = pos + 1, high remains unchanged(b) high = pos – 1, low remains unchanged(c) low = low +1, high = high – 1(d) low = pos +1, high = pos – 1I have been asked this question by my college director while I was bunking the class.This question is from Searching in portion Searching of Data Structures & Algorithms II

Answer» CORRECT answer is (a) low = pos + 1, HIGH REMAINS unchanged

The best I can explain: When the ELEMENT being searched is greater than the VALUE at the calculated position then in that case we update low and high remains unaltered. Updated value of low is low = pos + 1.


Discussion

No Comment Found

Related InterviewSolutions