Unsorted Arrays vs Binary Search
1. How is a linear search performed?
2. In the worst case, what is the time complexity of linear search?
3. In the best case, what is the time complexity of linear search?
4. How is linear search disadvantageous?
5. For an ordered linear search, O(log n) is the worst case time complexity.
(An ordered linear search is the linear search on an array which is already sorted)
(An ordered linear search is the linear search on an array which is already sorted)