algorithms
CategoryData Structures and Algorithms
SubcategoryData Structure and Algorithm Collections
Stars0
Algorithms and data structures.CLRS study
About algorithms
algorithms
CLRS study. Codes are written with golang.
go version: 1.11
-
- binaryTree
- B-Tree
- RS-vEB-Tree(Support single key multi value.Lazy hashtable is used to instead of array to reduce space complexity.Including Go Mixin design pattern)
- Disjoint-Set-Tree
-
Graph (including linkedMap, iterator)
- graph
- BFS
- DFS(use stack)
- StronglyConnectedComponents
- BioConnectedComponents(vertex bcc & edge bcc, use stack)
- eulerCircuit
- mst(including Kruskal(disjointSet) , Prim(fibonacci heap), secondaryMst, mst reduce for Prim, linear time bottleneck spanning tree)
- Single-Source Shortest Path (including bellmanFord, SPFA, Dijkstra, Gabow )
- All-Pairs Shortest Path (including FloydWarshall, Johnson)
- Max Flow (including flowGraph , preFlowGraph and allowedGraph data structure, Edmondes Karp, Push Relabel, Relabel to Front, Bipartite Graph Max Match and Hopcraft-Karp)
-
HashMap(Support UpScale and DownScale)
-
DynamicProgramming (Including OOP pattern of golang)
Frequently Asked Questions
What is algorithms?
algorithms is a Data Structures and Algorithms library for the Go programming language. Algorithms and data structures.CLRS study
How do I install algorithms?
Install algorithms with the Go module system using `go get shady831213/algorithms`. Check the repository for the current installation instructions.
What category does algorithms belong to?
algorithms is listed under Data Structures and Algorithms, specifically Data Structure and Algorithm Collections.