graph-algorithms

Crates.iograph-algorithms
lib.rsgraph-algorithms
version0.1.3
sourcesrc
created_at2023-04-23 22:52:48.333161
updated_at2023-05-02 12:49:31.221598
descriptionA crate for 5 graph algorithms - DIJKSTRA'S, BFS, DFS, KOSARAJU'S and BELLMAN FORD ALGORITHM
homepage
repositoryhttps://github.com/SanskrutiReddy/Rust-crate-for-graph-algorithms
max_upload_size
id846885
size57,313
pavan bodanki (pavanbodanki)

documentation

README

RUST CRATE FOR GRAPH ALGORITHMS - DIJKSTRA'S, BFS, DFS, KOSARAJU'S and BELLMAN FORD ALGORITHM

This is a Rust command-line application that implements 5 graph algorithms, namely

  1. Dijkstra's algorithm: Dijkstra's algorithm allows us to find the shortest path between any two vertices of a graph.
  2. Breadth-First Search algorithm: BFS allows to traverse all the vertices of a graph in breadthfirst order, visiting all the neighbors of a vertex before visiting the neighbors of its neighbors.
  3. Depth-First Search algorithm: DFS allows us to traverse all the vertices of a graph in depthfirst order, visiting a vertex and then recursively visiting its unvisited neighbors.
  4. Kosaraju's algorithm: Kosaraju's algorithm is used to find the strongly connected components of a directed graph.
  5. Bellman Ford algorithm: Bellman Ford algorithm helps us find the shortest path from a vertex to all other vertices of a weighted graph.

Getting Started

To get started with this application, you must have Rust and Cargo installed on your system. Once you have Rust and Cargo installed, you can clone this repository and run the following command to build and run the application:

cargo run

This will start the application and present a menu of available algorithms. Select an algorithm by entering the corresponding number and pressing Enter. The application will then run the selected algorithm. After that you can enter the necessary details displayed on the command prompt to display the results.

To run the test cases, you can mention the following command:

cargo test

Authors

  1. Sanskruti Reddy Donthi - https://github.com/SanskrutiReddy
  2. Shanwaz Waqar Kotekanti - https://github.com/ShanwazWaqarK9
  3. Abhishek Cherukuru - https://github.com/abhi1701
  4. Pavan Bodanki - https://github.com/pavanbodanki
Commit count: 121

cargo fmt