2 1. [15 points] Find single source shortest path starting with source vertex 'd' use Dijkstra's algorithm. Follow alpha
Posted: Sun Jul 10, 2022 11:27 am
2 1. [15 points] Find single source shortest path starting with source vertex 'd' use Dijkstra's algorithm. Follow alphabetical ordering when you visit the vertices within the list of adjacent vertices Maintain distance and predecessor information within vertex in the form [vertex, distance, predecessor] in below table. Front vertex a b 5 10 Next neighbor 10 2 Visited vertex 4 C d 4 Priority Queue (front to back) 20