Recursive Binary Search Sort the elements of the array in Ascending order and try to search the key element based on the mid value = (beg+end)/2;
Input: Enter Number of Elements: 5 Enter Array Elements: 2 3 1 5 7 Enter Search Element: 1
Output: Element Found at position = 3