Question: What is the primary advantage of using AVL trees over regular binary search trees?
Options:
Correct Answer: They are always balanced.
Solution:
AVL trees maintain a strict balance, ensuring that operations like search, insert, and delete are performed in O(log n) time.