Question: What is the main advantage of using an AVL tree over a regular binary search tree?
Options:
Correct Answer: AVL trees are always balanced, ensuring O(log n) height
Solution:
AVL trees maintain a strict balance, ensuring that the height of the tree is always O(log n), which guarantees efficient search, insert, and delete operations.