Popularity
4.7
Declining
Activity
0.0
Stable
19
3
2

Programming language: Crystal
License: MIT License
Tags: Algorithms And Data Structures    
Latest version: v0.1.0

graphlb alternatives and similar shards

Based on the "Algorithms and Data structures" category.
Alternatively, view graphlb alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of graphlb or a related project?

Add another 'Algorithms and Data structures' Shard

README

Build Status

graphlb

graphlb is a crystal library which contains all the graph datastructures and algorithms in crystal-lang.

Documentation

Please find the Documentation here

Installation

Clone repository manually:

$ git clone https://github.com/mettuaditya/graphlb && cd graphlb/

or add this to your application's shard.yml:

dependencies:
  graphlb:
    github: mettuaditya/graphlb
    version: ~> 0.1.0

Then run shards install

To Do

  • Algorithms

    • [x] Bellman-Ford
    • [x] Dijkstras
    • [x] Breadth-First-Search
    • [x] Depth-First-Search
    • [x] Prims
    • [x] Edmonds-karp
    • [ ] Floyd-warshall
    • [x] Ford-Fulkerson
    • [ ] Bipartite-Matching
    • [ ] Strongly Connected Components
  • Data-Structues

    • [x] Directed-Graph
    • [x] UnDirected-Graph
    • [x] Queue
    • [x] Stack
    • [x] General-Tree
    • [x] Binary-search-tree
    • [ ] Radix-tree
    • [ ] RB-tree

Contributors