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

https://github.com/samyam81/genericdatastructure

This repository contains implementations of various generic data structures and algorithms in C++.
https://github.com/samyam81/genericdatastructure

cpp generic

Last synced: 9 months ago
JSON representation

This repository contains implementations of various generic data structures and algorithms in C++.

Awesome Lists containing this project

README

          

# GenericDataStructure Repository

This repository contains implementations of various generic data structures and algorithms in C++, including:

1. **HashMopp**
- Description: Implements a hash map using separate chaining for collision resolution.
- File: `HashMopp.h`

2. **GoofyHashSet**
- Description: Implements a hash set with chaining for collision resolution.
- File: `GoofyHashSet.h`

3. **LinkedList**
- Description: Implements a generic singly linked list.
- File: `LinkedList.h`

4. **Queue**
- Description: Implements a generic queue using linked list.
- File: `Queue.h`

5. **TreeNode**
- Description: Defines a basic TreeNode structure.
- File: `TreeNode.h`

6. **GenericStack**
- Description: Implements a generic stack using the STL stack container.
- File: `GenericStack.h`

Feel free to explore these implementations and contribute to the repository!