Skip to content

RexiRexii/Dijkstra-Algorithm-Implementation

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 

Repository files navigation

Dijkstra-Algorithm-Implementation

Dijkstra's algorithm is used for finding the shortest paths between nodes in a graph

Usage

int V = 9;  // number of vertices/nodes in graph
Graph g(V); // initialize the graph

g.dijkstra(); // find the shortest path

About

Dijkstra's algorithm is used for finding the shortest paths between nodes in a graph

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages