

InterviewSolution
Saved Bookmarks
1. |
What do you mean by binary searching in an array |
Answer» A binary search, also known as a half-interval search, is an algorithm used in computer science to locate a specified value (key) within an array. For the search to be binary, the array must be sorted in either ascending or descending order. | |