Discussion on Graphs

Discover more aspects regarding graphs.

We'll cover the following

Additional notes

The running times of the depth-first-search and breadth-first-search algorithms are somewhat overstated by the following theorems we explained before:

  1. When given as input a Graph, g, that is implemented using the AdjacencyLists data structure, the bfs(g, r) algorithm runs in O(n+m)O(n + m) time.
  2. When given as input a Graph, g, that is implemented using the AdjacencyLists data structure, the dfs(g,r) and dfs2(g,r) algorithms each run in O(n+m)O(n + m) time.

Define nrn_r as the number of vertices, ii, of GG, for which there exists a path from rr to ii. Define mrm_r as the number of edges that have these vertices as their sources. Then the following theorem is a more precise statement of the running times of the breadth-first-search and depth-first-search algorithms.

Theorem: When given as input a Graph, g, that is implemented using the AdjacencyLists data structure, the bfs(g,r), dfs(g,r) and dfs2(g,r) algorithms each run in O(nr+mr)O(n_r + m_r) time.

Breadth-first-search seems to have been discovered independently by MooreE. F. Moore. The shortest path through a maze. In Proceedings of the International Symposium on the Theory of Switching, pages 285–292, 1959. and LeeC. Y. Lee. An algorithm for path connection and its applications. IRE Transaction on Electronic Computers, EC-10(3):346–365, 1961. in the contexts of maze exploration and circuit routing, respectively.

Create a free account to access the full course.

By signing up, you agree to Educative's Terms of Service and Privacy Policy