Question: In a binary search tree, what is the time complexity of searching for an element in the average case?
Options:
Correct Answer: O(log n)
Solution:
In a balanced binary search tree, the average time complexity for searching an element is O(log n).