aaarengilum indo? what is binary search???
Answers
Answered by
0
Answer:
njan undenne
Explanation:
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.
Answered by
0
Answer:
Binary Search:
Binary search looks for a particular item by comparing the middle most item of the collection. If a match occurs, then the index of item is returned. If the middle item is greater than the item, then the item is searched in the sub-array to the left of the middle item.
Similar questions