inary search. The ordered array produced by the sort should be passed to the search routine which returns the location in th
Write a program that prompts the user to enter the number of elemaents and the numbers themselves to be placed in an integer array that holds a maximum of 20 elements. The program should then prompt the user for an integer which will be searched for in the array using a binary search. Make sure to include the following steps along the way: A sort routine must be called before the binary search. You may use either the selection sort or the bubble sort. However, the sort must be implemented in its own function and not in main. Next include a function called by main to implement the binary search. The ordered array produced by the sort should be passed to the search routine which returns the location in the sorted array of the sought value, or -1 if the value is not in the array
Step by step
Solved in 2 steps with 1 images