Description Usage Arguments Value References
dijkstra
The algorithm takes a graph and an initial node and calculates the shortest path from the initial node to every other node in the graph.
1 | dijkstra(graph, init_node)
|
graph |
A data.frame with three variables (v1, v2 and w) that contains the edges of the graph (from v1 to v2) with the weight of the edge (w). |
init_node |
A numeric scalar that exist in the graph. |
The shortest path to every other node from the starting node as a vector.
https://en.wikipedia.org/wiki/Dijkstra%27s_algorithm
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.