Binary search algorithm can not be applied to
-
sorted linked list
-
sorted binary trees
-
sorted linear array
-
pointer array
A
Correct answer
Explanation
Binary search requires O(1) direct access to the middle element, which is not possible in linked lists as they require sequential traversal. Binary search CAN be applied to sorted linear arrays (direct index access), sorted binary trees (balanced BSTs allow O(log n) access), and pointer arrays (also support direct access).