I want a method that searches an ArrayList of strings Using
I want a method that searches an ArrayList of strings Using Binary search recursive methods and outputs the location if found. For java
Solution
There is an in built function in Java that does the Binary Search algorithm .
The arguments for the function are an array of integers and the value that you wish to search.
Hope this helps.

