1. Undirected Six-Node Network Pathfinding
Computer Science StudentBackground
Studying Dijkstra's algorithm in an algorithms course and solving manual trace assignments.
Problem
Needs to find the shortest path from node A to node F in an undirected graph and verify each relaxation step.
How to use
Paste the edge list into the edges textarea, set source to A, target to F, and leave directed unchecked.
Edges: A B 4, A C 2, B C 5, B D 10, C E 3, D E 4, D F 11, E F 8 | Source: A | Target: F | Directed: falseOutcome
Returns the complete step-by-step trace settling nodes in order and confirms the shortest path is A → C → E → F with a total distance of 13.