A basic AVL tree implementation
  • C 92.8%
  • CMake 7.2%
Find a file
2019-09-13 11:05:53 +05:30
.gitignore Use CMake 2019-07-22 18:29:21 +05:30
avl.c Use CMake 2019-07-22 18:29:21 +05:30
avl.h Use CMake 2019-07-22 18:29:21 +05:30
CMakeLists.txt Improve CMake build options 2019-07-23 09:52:54 +05:30
main.c Use CMake 2019-07-22 18:29:21 +05:30
README.md Add README.md 2019-09-13 11:05:53 +05:30

avl

Build

mkdir build
cd build
cmake ..
make

A static library avl.a and a test executable main are generated.

Usage

See avl.h.