An open API service indexing awesome lists of open source software.

https://github.com/rationalcrafter/avl_tree

Simple implementation of an AVL tree set data structure
https://github.com/rationalcrafter/avl_tree

algo c data-structures

Last synced: 3 months ago
JSON representation

Simple implementation of an AVL tree set data structure

Awesome Lists containing this project

README

        

An AVL Tree is a self-balancing binary search tree where the difference between the heights of the
left and right subtrees cannot be made more than one for all the nodes. If at any point the height
becomes more than one, the tree balances itself through rotations.