This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| DIJKSTRA'S LINK STATE ALGORITHM AUTHOR: KENE UDEH LANG: JAVA | |
| DESCRIPTION: Implements the Dijkstras Link State Algorithm. | |
| */ | |
| import java.util.*; | |
| public class DijkstrasLinkStateAlgorithm{ | |
| public List<Router> routers; | |
| public List<Link> links; |