Match List - I with List - II
section*{List - I (Algorithms)} (A) Bellman - Ford algorithm (with adjacencylist representation) (B) Dijkstra Algorithm (C) Prim's Algorithm (D) Topological sorting (with adjacency list representation)Step-by-step Solution:
### Final Matching:
| List - I (Algorithms) | List - II (Complexity) |
|---------------------------|---------------------------|
| (A) Bellman-Ford | (III) \( O(VE) \) |
| (B) Dijkstra | (I) \( O((V^2)) \) |
| (C) Prim's | (II) \( O((V+E) \log V) \) |
| (D) Topological Sorting | (IV) \( O(V+E) \) |