Question: What is the main property that distinguishes an AVL tree from a regular binary search tree?
Options:
Correct Answer: It is always balanced with a height difference of at most 1
Solution:
An AVL tree maintains a balance factor of -1, 0, or 1 for every node, ensuring that the tree remains balanced.