Multiple choice Which structure is more amenable for searching? Binary tree Singular linked list Double linked list Array Reveal answer Fill a bubble to check yourself A Correct answer Explanation Binary trees, specifically balanced ones, allow for O(log n) search time, which is significantly faster than the O(n) linear search required for linked lists or unsorted arrays.