I have a little confusion in the following two statements.
The below program is finds the index of an element out of a sorted array[no duplicates] using binary search.
int bin(int *arr,int l,int h,int k)
{
int mid;
if(l>h)
return -1;
if(l==h)
{
return arr[l]==k?l:-1;
}
else
{
mid=(l+h)>>1;
if(arr[mid]==k)
return mid;
else if(k>arr[mid])
bin(arr,mid+1,h,k);
else
bin(arr,l,mid-1,k);
}
}
I do not have any problem in the program[working perfectly]:
I have confusion in following two statements:
bin(arr,l,mid-1,k); http://ideone.com/p1o5U
return bin(arr,l,mid-1,k); http://ideone.com/lMhgB
Using any of the above statement gives correct result.
Which statement is more efficient in terms of time?
How the program is working fine even without return statement?