Question: What is the primary purpose of using AVL trees?
Options:
Correct Answer: To maintain balance for efficient operations
Solution:
AVL trees maintain a balance factor to ensure that the height difference between the left and right subtrees is at most one, which allows for efficient search, insert, and delete operations.