https://github.com/amrsaber/avl-balanced-binary-search-tree
https://github.com/amrsaber/avl-balanced-binary-search-tree
avl binary-search-tree bst map sorted-map template
Last synced: 9 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/amrsaber/avl-balanced-binary-search-tree
- Owner: AmrSaber
- License: mit
- Archived: true
- Created: 2017-12-17T20:22:13.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-12-17T21:31:08.000Z (over 8 years ago)
- Last Synced: 2025-10-05T01:39:22.278Z (9 months ago)
- Topics: avl, binary-search-tree, bst, map, sorted-map, template
- Language: C++
- Size: 15.6 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# AVL Balanced Binary Search Tree
The implementation of a balanced binary search tree (AVL tree) with C++, the tree is implemented as template map that supports any data types as key and value.
The implementation is divided into header file and cpp file, the cpp file is fully documented
and the main file provides a very convenient interface for dealing with the tree.
This implementation was intended as a project for data structure course, but I found it too beautiful not to be published ^_^
By the way, we got full mark + Bonus :D