This commit is contained in:
jatin0004 2024-07-17 10:41:12 +09:00 committed by GitHub
commit 5e789fee70
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@ export default function bellmanFord(graph, startVertex) {
const previousVertices = {}; const previousVertices = {};
// Init all distances with infinity assuming that currently we can't reach // Init all distances with infinity assuming that currently we can't reach
// any of the vertices except start one. // any of the vertices except start one and try to get to that point.
distances[startVertex.getKey()] = 0; distances[startVertex.getKey()] = 0;
graph.getAllVertices().forEach((vertex) => { graph.getAllVertices().forEach((vertex) => {
previousVertices[vertex.getKey()] = null; previousVertices[vertex.getKey()] = null;

View File

@ -1,7 +1,7 @@
# Prim's Algorithm # Prim's Algorithm
In computer science, **Prim's algorithm** is a greedy algorithm that In computer science, **Prim's algorithm** is a greedy algorithm that
finds a minimum spanning tree for a weighted undirected graph. finds a minimum spanning tree(shortest distance to reach every node) for a weighted undirected graph.
The algorithm operates by building this tree one vertex at a The algorithm operates by building this tree one vertex at a
time, from an arbitrary starting vertex, at each step adding time, from an arbitrary starting vertex, at each step adding