Skip to content
#

avl-tree-implementation

Here are 3 public repositories matching this topic...

This is a C++ implementation of an AVL tree, which is a self-balancing binary search tree. An AVL tree maintains the balance factor of each node, which is the difference between the heights of its left and right subtrees. Whenever a node becomes unbalanced (its balance factor is either -2 or 2), the tree performs a rotation to restore the balance.

  • Updated Aug 4, 2023
  • C++

This project is a C++ application that manages reservations for electric vehicle charging stations. The program uses AVL trees & Map trees to efficiently manage reservations for electric charging stations based on power, location, and time.

  • Updated Apr 30, 2023
  • C++

Improve this page

Add a description, image, and links to the avl-tree-implementation topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the avl-tree-implementation topic, visit your repo's landing page and select "manage topics."

Learn more