DSA
DSA copied to clipboard
Project : Data Structures and Algorithms in C#
Data Structures and Algorithms in C#
~~Simple Data Structures~~
- ~~Linked List~~
- ~~Double Linked List~~
- ~~Stack~~
- ~~Queue~~
~~Trees~~
- ~~Binary Tree~~
- ~~Binary Search Tree~~
- ~~B+ Tree~~ (deletion remaining)
- ~~AVL Tree~~
- ~~Red Black Tree~~ (deletion remaining)
- ~~Splay Tree~~
- ~~Heap~~
- ~~Min Heap~~
- ~~Max Heap~~
- ~~Trie~~
- ~~Huffman~~
Sorting (HIGHEST)
- ~~Bubble~~
- ~~Insertion~~
- ~~Selection~~
- ~~Heap~~
- ~~Radix~~
- ~~Quick~~
- ~~Shell~~
- ~~Merge~~
- ~~Tim~~
- ~~Cocktail~~
- KMP
- Rabin-Karp
Graph Traversal (HIGH)
- Adjacency List
- Adjacency Matrix
- BFS
- DFS
- Topoligical Sort
- Prim
- Kruskal
- Djikstra
- Floyd Warshall
- Bellman Ford
- A*