vkalintiris 92842d8422 CMake build system. (#15996) 1 year ago
..
README.md f9acc1aead More learn reorg/reordering (#14505) 2 years ago
avl.c 43c749b07d Obvious memory reductions (#15204) 1 year ago
avl.h 5943203a66 bearer authorization API (#15321) 1 year ago

README.md

AVL

AVL is a library indexing objects in B-Trees.

avl_insert(), avl_remove() and avl_search() are adaptations of the AVL algorithm found in libavl v2.0.3, so that they do not use any memory allocations and their memory footprint is optimized (by eliminating non-necessary data members).

In addition to the above, this version of AVL, provides versions using locks and traversal functions.