https://github.com/couragebforedth/avl-tree
An implementation of an AVL tree that allows inserting, deleting, printing, and sorting nodes with diagrams and unit test cases for every possible operation.
https://github.com/couragebforedth/avl-tree
algorithms avl-tree cplusplus data-structures diagrams unit-tests
Last synced: 9 months ago
JSON representation
An implementation of an AVL tree that allows inserting, deleting, printing, and sorting nodes with diagrams and unit test cases for every possible operation.
- Host: GitHub
- URL: https://github.com/couragebforedth/avl-tree
- Owner: couragebforedth
- License: mit
- Created: 2017-07-26T01:22:56.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2023-09-06T03:49:31.000Z (over 2 years ago)
- Last Synced: 2025-03-22T04:15:09.930Z (about 1 year ago)
- Topics: algorithms, avl-tree, cplusplus, data-structures, diagrams, unit-tests
- Language: C++
- Homepage:
- Size: 6.52 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# AVL Tree #
Author: Daniel Gilbert (AdaptOrDie247)
An implementation of an AVL tree that allows inserting, deleting, printing, and sorting nodes with diagrams and unit test cases for every possible operation.
### Build Instructions for Linux/Cygwin ###
mkdir build
cd build
cmake ..
make