Given an array of n distinct integers sorted in ascending order, write a function that returns a Fixed Point in the array, if there is any Fixed Point present in array, else returns -1. Fixed Point in an array is an index i such that arr[i] is equal to i. Note that integers in array can be negative.
Examples:
First check whether middle element is Fixed Point or not. If it is, then return it; otherwise check whether index of middle element is greater than value at the index. If index is greater, then Fixed Point(s) lies on the right side of the middle point (obviously only if there is a Fixed Point). Else the Fixed Point(s) lies on left side.
Method 1 (Linear Search)
Read full article from Find a Fixed Point in a given array | GeeksforGeeks
Examples:
Input: arr[] = {-10, -5, 0, 3, 7} Output: 3 // arr[3] == 3
Method 2 (Binary Search)First check whether middle element is Fixed Point or not. If it is, then return it; otherwise check whether index of middle element is greater than value at the index. If index is greater, then Fixed Point(s) lies on the right side of the middle point (obviously only if there is a Fixed Point). Else the Fixed Point(s) lies on left side.
int
binarySearch(
int
arr[],
int
low,
int
high)
{
if
(high >= low)
{
int
mid = (low + high)/2;
/*low + (high - low)/2;*/
if
(mid == arr[mid])
return
mid;
if
(mid > arr[mid])
return
binarySearch(arr, (mid + 1), high);
else
return
binarySearch(arr, low, (mid -1));
}
/* Return -1 if there is no Fixed Point */
return
-1;
}
Read full article from Find a Fixed Point in a given array | GeeksforGeeks