AVL Trees — A Introductory Overview

Alexander Obregon
5 min readMar 17, 2023
Image Source

Introduction

In computer science, data structures play a vital role in organizing and storing data efficiently. Among various types of data structures, binary search trees are widely used for their inherent properties of providing sorted data and ensuring efficient search, insertion, and deletion operations. However, when it comes to balancing the tree to optimize these operations, AVL trees come into play. In this blog post, we’ll take an in-depth look at AVL trees, their properties, benefits, and how they help maintain a balanced binary search tree. We’ll also explore a basic implementation of an AVL tree in Java, demonstrating the key components required for insertion and balancing.

Understanding Binary Search Trees (BST)

Before delving into AVL trees, it’s essential to understand the basic concept of binary search trees. A BST is a node-based data structure where each node contains at most two child nodes, organized in such a way that the value of the node to the left is less than or equal to the parent node, and the value of the node to the right is greater than or equal to the parent node.

The Need for Balanced Trees

The efficiency of a binary search tree largely depends on its height. In the best-case scenario, the height of the tree is O(log n), while in the worst-case scenario, the height becomes O(n). Unbalanced trees can lead to longer search, insertion, and deletion times, hence the need for balanced trees like AVL trees.

Introduction to AVL Trees

AVL trees, named after their inventors Adelson-Velsky and Landis, are height-balanced binary search trees. An AVL tree is a binary search tree that maintains the balance property, ensuring that the height difference between the left and right subtrees of any given node does not exceed one.

AVL Tree Properties

The main properties of AVL trees include:

  • Each node in the tree has a balance factor that is either -1, 0, or 1.
  • A balance factor is calculated as the difference in height between the left and right subtrees.
  • The height of an empty subtree is considered as -1.
  • To maintain the balance property, AVL trees may require tree rotations during insertion or deletion operations.

Tree Rotations

Tree rotations are the primary mechanism used to rebalance AVL trees. There are four types of tree rotations:

  • Single right rotation (LL rotation)
  • Single left rotation (RR rotation)
  • Double left-right rotation (LR rotation)
  • Double right-left rotation (RL rotation)

AVL Tree Operations

The fundamental operations in AVL trees are insertion, deletion, and searching. During insertion and deletion, tree rotations may be required to maintain the balance property.

  • Insertion: When a new node is added to the tree, the balance factors of the affected nodes are updated. If an imbalance is detected, appropriate rotations are performed to restore balance.
  • Deletion: When a node is removed from the tree, the balance factors of the affected nodes are updated. If an imbalance is detected, appropriate rotations are performed to restore balance.
  • Searching: Searching in an AVL tree is similar to searching in a binary search tree. The balanced nature of the AVL tree ensures that search operations are efficient, with a time complexity of O(log n).

Advantages of AVL Trees

  • Improved performance for search, insertion, and deletion operations due to the balanced nature of the tree.
  • Predictable and consistent performance, as the height of the tree is always within the range of O(log n).
  • AVL trees are particularly suited for situations where search operations are more frequent than insertions or deletions.

Implementing an AVL Tree in Java

In this section, we’ll explore a basic implementation of an AVL tree in Java, focusing on the key components required for insertion and balancing.

class AVLNode {
int key, height;
AVLNode left, right;

AVLNode(int key) {
this.key = key;
this.height = 1;
}
}

public class AVLTree {
private AVLNode root;

// Get height of the node
private int height(AVLNode node) {
return (node == null) ? 0 : node.height;
}

// Get balance factor of the node
private int balanceFactor(AVLNode node) {
return (node == null) ? 0 : height(node.left) - height(node.right);
}

// Update the height of the node
private void updateHeight(AVLNode node) {
node.height = Math.max(height(node.left), height(node.right)) + 1;
}

// Right rotation
private AVLNode rightRotate(AVLNode y) {
AVLNode x = y.left;
AVLNode T2 = x.right;

x.right = y;
y.left = T2;

updateHeight(y);
updateHeight(x);

return x;
}

// Left rotation
private AVLNode leftRotate(AVLNode x) {
AVLNode y = x.right;
AVLNode T2 = y.left;

y.left = x;
x.right = T2;

updateHeight(x);
updateHeight(y);

return y;
}

// Insert a key into the AVL tree
public void insert(int key) {
root = insert(root, key);
}

private AVLNode insert(AVLNode node, int key) {
if (node == null) {
return new AVLNode(key);
}

if (key < node.key) {
node.left = insert(node.left, key);
} else if (key > node.key) {
node.right = insert(node.right, key);
} else {
// Duplicate keys not allowed
return node;
}

updateHeight(node);
int balance = balanceFactor(node);

// Left-Left case
if (balance > 1 && key < node.left.key) {
return rightRotate(node);
}

// Right-Right case
if (balance < -1 && key > node.right.key) {
return leftRotate(node);
}

// Left-Right case
if (balance > 1 && key > node.left.key) {
node.left = leftRotate(node.left);
return rightRotate(node);
}

// Right-Left case
if (balance < -1 && key < node.right.key) {
node.right = rightRotate(node.right);
return leftRotate(node);
}

return node;
}
}

The code above demonstrates the basic structure and operations for an AVL tree in Java, including node creation, height and balance factor calculations, right and left rotations, and key insertion. For a more comprehensive implementation, you can expand this code to include other operations like searching and deletion, as well as methods for traversal and visualization of the tree.

Conclusion

AVL trees are a important data structure in computer science, providing efficient search, insertion, and deletion operations by maintaining a balanced binary search tree. Although they require additional logic for balancing, the advantages of predictable and consistent performance outweigh this overhead. Particularly suited for scenarios where search operations are more frequent than insertions or deletions, AVL trees play an essential role in optimizing various applications and algorithms that rely on well-organized and easily accessible data. By exploring a Java implementation of AVL trees, I hope to provide a starting point for further exploration and integration of AVL trees into your projects, improving the efficiency and performance of your data handling tasks.

  1. Wikipedia — AVL Tree
  2. GeeksforGeeks — AVL Tree
  3. Baeldung — Implementing an AVL Tree in Java

--

--

Alexander Obregon

Software Engineer, fervent coder & writer. Devoted to learning & assisting others. Connect on LinkedIn: https://www.linkedin.com/in/alexander-obregon-97849b229/