Library of common Data Structures in C++ ######Abstract Data Types
- List ADT
- Stack ADT
- [Array based Stack] (https://github.com/rohan-singh/Data-Structures/blob/master/arrayStack.cpp).
- [Link based Stack] (https://github.com/rohan-singh/Data-Structures/blob/master/linkedStack.cpp).
- Queue ADT
- [Array based Queue] (https://github.com/rohan-singh/Data-Structures/blob/master/arrayQueue.cpp)
- [Link based Queue] (https://github.com/rohan-singh/Data-Structures/blob/master/linkedQueue.cpp)
- Dictionary ADT
- [Binary Search Tree] (https://github.com/rohan-singh/Data-Structures/blob/master/bst.cpp)
- Priority Queue ADT
- Graph ADT
- [Adjacency List] (https://github.com/rohan-singh/Data-Structures/blob/master/adjList.cpp)
- [Adjacency Matrix] (https://github.com/rohan-singh/Data-Structures/blob/master/adjMatrix.cpp)
Other Resources: