Quote
Binary search will always be more efficient ten a linear search if the data is sorted.
Just to clarify, as long as the context is an array or binary search tree. With Linked Lists, binary search comes out to O(n log(n)). I'm nitpicking a little at this point, though.
