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

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

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)