Dijkstra's Algorithm


Introduction

A network topology can be represented by a graph -- each node is a server and each edge is network connection.  To determine the best way to route a data packet from your server to anywhere on the internet, you need to know the shortest path to each node.  This problem is known as the shortest-paths problem, and it can be solved by Dijkstra's algorithm.
 

Resources

Back to Main Menu