Science, asked by deepakmaliindi5107, 1 year ago

Binary search applied on which data structure

Answers

Answered by writersparadise
0

The answer is sorted arrays.


Binary search is applied on sorted arrays. This is an algorithm that is used to search for an element in a list that is already sorted. The search starts from the middle of the list. If the middle value is not the desired element, the search is continued on the lower or upper half of the list by resuming the split and search style. 
Similar questions