This page includes an overview of AVL tree.
The balance factor (bf) is computed as: bf = height(left subtree) - height(right subtree). A node is balanced if the absolute value of the bf is smaller than 2. The sign of bf indicates the direction of inbalance. A tree is balanced if every node is balanced.
For more details, visit the AVL tree.