Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Examine the following binary search code, and determine whether or not it is correct. If it is not correct, indicate the change(s) that should be
Examine the following binary search code, and determine whether or not it is correct. If it is not correct, indicate the change(s) that should be made to fix it. There will be point deductions for correct statements flagged as incorrect.
private int findInsertionPoint(E obj, int lo, int hi) {
if(hi < lo) return hi;
int mid = (lo+hi)/2;
int comp = ((Comparable)obj).compareTo(array[mid]); if(comp == 0)
return mid;
if(comp < 0)
findInsertionPoint(obj, lo, mid-1);
else findInsertionPoint(obj, mid+1, hi);
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started