Can linear search recursive algorithm and binary search recursive algorithm be performed on an unordered list?
Can linear search recursive algorithm and binary search recursive algorithm be performed on an unordered list? Correct Answer 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.
মোঃ আরিফুল ইসলাম
Feb 20, 2025