Skip to content

Latest commit

 

History

History
7 lines (4 loc) · 284 Bytes

README.md

File metadata and controls

7 lines (4 loc) · 284 Bytes

AVL Tree in Kotlin

A Kotlin implementation of AVL Tree, a self-balancing binary search tree. This implementation allows you to insert elements into the tree and it will keep the height of the tree balanced.

Usage

To use the AVL Tree, simply create an instance of the `AVLTree