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

https://github.com/phoemur/avl_tree

Naive implementation of an AVL tree using modern C++ (C++14, smart_pointers,etc...), and also a naive implementation of map using it.
https://github.com/phoemur/avl_tree

associative-map avl avl-tree avltree cpp data-structures map

Last synced: 4 days ago
JSON representation

Naive implementation of an AVL tree using modern C++ (C++14, smart_pointers,etc...), and also a naive implementation of map using it.

Awesome Lists containing this project

README

          

# AVL_tree
Naive implementation of an AVL tree using modern C++ (C++14, smart_pointers,etc...), and also an implementation of map using it.

avltree_raw_pointers.hpp : header only implementation of AVL tree using raw pointers

avltree.hpp : header only implementation of AVL tree using smat_pointers, move semantics, etc...

avlmap.hpp : header only naive implementation of an associative container (map) using AVL tree.

*Be sure to enable optimization flags (-O2) if using smart_pointers to get best performance.