aboutsummaryrefslogtreecommitdiff
path: root/tests/test_avl_tree.c
Commit message (Collapse)AuthorAge
* run clang-format.Josh Rahm2021-10-26
|
* Added header files implementing a basic AVL tree and Map based off it.Josh Rahm2020-12-06
These headers take inspiration from the linked list and array list headers as a way to provide primitive templates in C. This time they implement an AVL tree and Map template (which uses the AVL tree). Included are relatively robust tests, though they could be improved.