7.25

From The Algorithm Design Manual Solution Wiki
Jump to navigation Jump to search

Use the BFS starting from the vertex v. For every node keep track of the level from the vertex v. When w is encountered for the first time the level of w is the length of the shortest path. Count how many times you discover w on that level. Stop expanding nodes when you go past the length of the shortest path.

Back to Chapter 7