https://github.com/anicolaspp/csharpcollections
https://github.com/anicolaspp/csharpcollections
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/anicolaspp/csharpcollections
- Owner: anicolaspp
- Created: 2018-03-12T03:22:52.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-03-17T16:11:35.000Z (about 8 years ago)
- Last Synced: 2025-03-06T03:14:46.467Z (over 1 year ago)
- Language: C#
- Size: 3.53 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CSharpCollections
Some interesting `Collections` and `Data Structures` in C#.
This lib can be added from NuGet using
```
PM> Install-Package DataCollections -Version 1.0.0
```
# Basic Structures
- Stack
- Queue
- Binomial Heap
- Circular Linked List
- Dictionary
- DisJoinSet
- Fibonacci Heap
- Skip List
# Graphs
- Adjacency List Graph
- Matrix Graph
# Trees
- B Tress
- AVL Tree
- Red Black Tree
- Trie Tree
-