#graph #graph-algorithms #algorithm #edge #minimum #tree #structure

graphmst

This crate allows you to generate minimum spanning tree from a graph using Prims, Kruskals, Boruvkas and Reverse Delete algorithms

8 releases

0.1.7 May 1, 2023
0.1.6 Apr 30, 2023

#503 in Algorithms

44 downloads per month

MIT license

2MB
1.5K SLoC

Contains (rust library, 1.5MB) liblib.rlib

Minimum Spanning Tree and related algorithms

  • Allows users to efficiently find a Minimum Spanning Tree of a graph and use various algorithms that are related to it.

Crate Features

  • Contains a custom graph structure which supports edge weights.
  • Implements a reverse-delete algorithm along with Prim’s, Kruskal’s, and Borůvka’s algorithm for finding a minimum spanning tree.
  • Includes any supporting algorithms.

Releases

  • V1. Basic graph structure and Kruskal’s algorithm.
  • V2. Prim’s algorithm
  • V3. Borůvka’s algorithm
  • V4. reverse-delete algorithm

Devs

  • Shravya Kodur
  • Ashwinkumar Ajithkumar Pillai
  • Micheal Williams
  • Vinaya Birajdar

Note

Test Cases are added in algo.rs file and lib.rs file

No runtime deps