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

https://github.com/hpedrorodrigues/avltree

A simple implementation of AVL Tree
https://github.com/hpedrorodrigues/avltree

algorithm avl-tree data-structure

Last synced: 7 months ago
JSON representation

A simple implementation of AVL Tree

Awesome Lists containing this project

README

          

# AVL Tree

A simple implementation of AVL Tree :)

A school work.

![AVL Tree](./screenshots/avltree.png)

To run this project just type

```bash
g++ src/main.cpp \
src/run/Runner.cpp \
src/model/Tree.cpp \
src/model/Noh.cpp \
src/model/Constants.cpp \
-o avltree && ./avltree
```

or `./scripts/run.sh` or just `make && ./avltree`.