Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 432 Bytes

File metadata and controls

23 lines (18 loc) · 432 Bytes

Computer Networks Routing Protocols

Link State and Distance Vector Routing Protocol implementation in Java

  1. Link State Routing Protocol
    Implemented using Dijkstra's Algorithm

  2. Distance Vector Routing Protocol
    Implementd using Bellman-Ford Algorithm

Input:
<no. of vertices> <no. of edges = m>
<edge 1>
<edge 2>
..
..

Sample Input:
3 3
1 2 4
1 3 1
2 3 2