ObjectiveMcq
Print Protected
This page is protected for print. Use the website to view the content.
Can linear search recursive algorithm and binary search recursive algorithm be performed on an unordered list?
Correct Answer: A — Binary search can't be used
As binary search requires comparison, it is required that the list be ordered. Whereas this doesn't matter for linear search.