Skip to content

Latest commit

 

History

History

17-single-source-shortest-path

Unit 17: Single source Shortest path

This unit covers the following single source shortest path algorithms:

  • Breadth first search
  • Dijkstra's algorithm
  • Bellman-Ford

Complementary notes can be found in section 4.4 of the book Competitive Programming 3.

Prerequisites

Practice problems

problems marked with (!) are recommended as beginning exercise

BFS

Dijkstra

Bellman-Ford