Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/SimmeringRook/DataStructures
My personal take on common Data Structures (Stacks, Lists, Queues, Tree, and Graphs).
https://github.com/SimmeringRook/DataStructures
Last synced: 5 days ago
JSON representation
My personal take on common Data Structures (Stacks, Lists, Queues, Tree, and Graphs).
- Host: GitHub
- URL: https://github.com/SimmeringRook/DataStructures
- Owner: SimmeringRook
- Created: 2018-06-15T16:24:11.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-05-08T02:02:42.000Z (over 5 years ago)
- Last Synced: 2024-08-02T18:40:05.424Z (3 months ago)
- Language: C#
- Homepage:
- Size: 55.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# DataStructures
As a learning exercise, I am recreating each data structure. My hope is to better understand their implementations across various languages and their differences.
### Planned Implementations:
- Stacks
- Lists
- Queues
- Trees
- Graphs### Planned Languages:
1. C# (including LINQ compatibility where applicable)
2. C++
3. Python