0
1.1kviews
Compare binary search and linear search algorithm
1 Answer
| written 3.8 years ago by |
| Linear Search Algorithm | Binary Search Algorithm |
|---|---|
| Linear search is an algorithm to find an element in a list by sequentially checking the elements of the list until finding the matching element. | Binary search is an algorithm that finds the position of a target value within a sorted array. |
| It is … |