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

https://github.com/anicolaspp/csharpcollections


https://github.com/anicolaspp/csharpcollections

Last synced: about 1 month ago
JSON representation

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
-