Java: Link-State Routing Algorithm for Networking
The Link-State Algorithm is one of the routing algorithms for the Control Plane in Networking. The objective is to find the least-cost path from one node to another using a table. I'm familiar with writing the table by hand, but code wise I need help. My main objective for this assignment is to fix the buildRoutingTableForNode() method in the LinkStateNetworking program. Here are the resources: Driver > https://code.sololearn.com/cZkx5sfJP8uP/#java LinkStateNetwork(fixing the method) > https://code.sololearn.com/cOiIOd8TnbOa/#java Network Utils for parsing file > https://code.sololearn.com/ctN39O6o1KHv/#java Text file > https://code.sololearn.com/czj4MFj8zA4U/#java I've taken notes but my main curiosity is the buildRoutingTableForNodes() method in the LinkStateNetwork program. Thanks!