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++.
- Host: GitHub
- URL: https://github.com/samyam81/genericdatastructure
- Owner: samyam81
- Created: 2024-05-08T11:53:11.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-20T08:17:36.000Z (almost 2 years ago)
- Last Synced: 2025-03-22T09:24:56.930Z (about 1 year ago)
- Topics: cpp, generic
- Language: C++
- Homepage:
- Size: 8.79 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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!