Introduction to Shortest Paths
Explore the fundamentals of shortest path problems in weighted directed graphs. Understand how to determine the shortest path from a source to a target vertex through shortest path trees, and learn about challenges and solutions involving negative edge weights and graph directionality.
Weighted directed graph (two vertices)
Suppose we are given a weighted directed graph with two special vertices, and we want to find the shortest path from a source vertex to a target vertex . That is, we want to find the directed path starting at and ending at that minimizes the function
...