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
- Host: GitHub
- URL: https://github.com/hpedrorodrigues/avltree
- Owner: hpedrorodrigues
- License: mit
- Created: 2016-02-23T16:25:00.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-05-04T13:29:03.000Z (over 9 years ago)
- Last Synced: 2025-03-08T09:09:03.619Z (7 months ago)
- Topics: algorithm, avl-tree, data-structure
- Language: C++
- Homepage:
- Size: 660 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# AVL Tree
A simple implementation of AVL Tree :)
A school work.

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`.