BaumalgorithmenAdvanced

AVL-Baum

Erster selbstbalancierender binarer Suchbaum, erfunden 1962 von Adelson-Velsky und Landis. Halt Hohenbalance durch Rotationen aufrecht und garantiert O(log n)-Operationen. Striktere Balancierung als Rot-Schwarz-Baume macht ihn ideal fur lookup-intensive Anwendungen wie Datenbanken und Dateisysteme.

#tree#self-balancing#rotation#binary-search-tree

Complexity Analysis

Time (Average)

O(log n)

Expected case performance

Space

O(n)

Memory requirements

Time (Best)

O(log n)

Best case performance

Time (Worst)

O(log n)

Worst case performance

📚 CLRS Reference

Introduction to Algorithms‱Chapter 13‱Section Notes

Watch rotations maintain balance!

Rotation Types

  • ‱ LL: Right rotation (left-heavy)
  • ‱ RR: Left rotation (right-heavy)
  • ‱ LR: Left-Right rotation
  • ‱ RL: Right-Left rotation
  • ‱ Balance factor: height(left) - height(right)
  • ‱ O(log n) for insert, delete, search
Step: 1 / 0
500ms
SlowFast
Keyboard Shortcuts
Space Play/Pause← → StepR Reset1-4 Speed

Real-time Statistics

Algorithm Performance Metrics

Progress0%
Comparisons
0
Swaps
0
Array Accesses
0
Steps
1/ 0

Algorithm Visualization

Step 1 of 0

Initialize array to begin

Default
Comparing
Swapped
Sorted

Code Execution

Currently executing
Previously executed

Implementation

Related Algorithms

View all in Baumalgorithmen
AVL Tree - Algorithm Vision | Algorithm Vision