Question: 14.7 Lab 9: Recursive Search Implement a recursive binary search function. bSearch passes in an array of integers, the size of the array, and the
14.7 Lab 9: Recursive Search
Implement a recursive binary search function.
bSearch passes in an array of integers, the size of the array, and the value the function is searching for. The function should return the index where found or -1 if not found. You will want to implement a recursive helper function that passes in the array, the value to be located, and the beginning and ending of the range of values to search within.
Use the provided main function to test your search function. Be sure not to use a loop of any kind in any of the functions you write.

#include
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
