Question: What is the worst-case time complexity for searching an element in a binary search tree?
Options:
Correct Answer: O(n)
Solution:
In the worst case, a binary search tree can degenerate into a linked list, leading to a search time complexity of O(n).