https://github.com/papachristoumarios/abstract-data-types
A library implementing some data structures for educational purposes
https://github.com/papachristoumarios/abstract-data-types
adt algorithm data-structures tree
Last synced: 11 days ago
JSON representation
A library implementing some data structures for educational purposes
- Host: GitHub
- URL: https://github.com/papachristoumarios/abstract-data-types
- Owner: papachristoumarios
- License: mit
- Created: 2016-02-22T12:56:32.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2016-09-13T18:10:32.000Z (about 9 years ago)
- Last Synced: 2025-03-02T06:15:20.091Z (9 months ago)
- Topics: adt, algorithm, data-structures, tree
- Language: C++
- Homepage:
- Size: 12.7 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# abstract-data-types
A library implementing some ADTs for educational purposes
The data-types that are implemented are:
1. Linked Lists
2. Trees (N-Ary trees, M-way Trees and more special cases like RB trees, AVL trees)
3. Queues
4. Heaps / Priority Queues
5. Hashtables
## References
1. Introduction to Algorithms (aka CLRS)
2. Data Structures and Algorithms with Object-Oriented Design Patterns in C++ (Bruno R. Preiss)