Complete the following method binarySearch. Fill in each blank below.
int binarySearch(int [] stuff, int val )
int bot= 0, top = stuff.length-1;
int middle = __________________________
if (stuff[middle] == val) return middle;
top = _____________________
bot = _____________________
Write the binarySearch using recursion.
public static int binarySearch(int[] stuff, int item, int bot, int top)