Dijkstra’s Algorithm
The following is an online version of my Dijkstra program for RISC OS computers. Given a table of distances and start and end nodes, Dijkstra’s algorithm calculates the shortest distance between them.
The diagram on the right shows an example network with distances marked. The table of this network would be of the following form:
Manchester,41,20,59 Oxford,20,48 Keele,24 Coverack
The first item on each line is the name of the node, then the following numbers are the distance from that node to each of the following nodes. For example, in the above table, the distance from Manchester to Oxford is 41, and the distance from Oxford to Coverack is 48.