Shortest Path

From TRCCompSci - AQA Computer Science
Revision as of 14:04, 16 January 2017 by C3ypt1c (talk | contribs) (Fixed Link)
Jump to: navigation, search

The shortest path is usually found by Dijkstra's algorithm. The algorithm functions as follows:

  1. The first node has a distance of 0, this is locked in and labeled node one.
  2. Each non locked in node that is connected by a weighted arc gains a temporary label equal to the total weight to reach it so long as the new distance is less then any previously marked.
  3. The lowest distance node is locked in with the shortest distance available and marked as the next node in the path.
  4. Each new arc available is then checked, and the second and third steps are repeated using the total distance to reach the node.
  5. Once every node is marked, the shortest path would be the backwards path from the last node, where taking the arc reaches the distance on the locked in node until the final number is zero at the start.