chizon/AVLTree
Folders and files
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Repository files navigation
Basic C++ AVL Tree Template A self-balancing binary search tree. Supports add(object), remove(object), and find(object). The linked list is used to print the contents of the tree (because I used this for a class assignment where we weren't allowed to use STL structures).