1 / 13

Discussion #32 Properties and Applications of Depth-First Search Trees

Discussion #32 Properties and Applications of Depth-First Search Trees. Topics. Depth-first search trees and forests Tree edges; forward, backward, and cross edges Post order numbers Applications Cycles Topological sorting Reachability Connected components. 3. 2. 5. 4. 1. 6. 5

iolani
Download Presentation

Discussion #32 Properties and Applications of Depth-First Search Trees

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Discussion #32Properties and Applications of Depth-First Search Trees

  2. Topics • Depth-first search trees and forests • Tree edges; forward, backward, and cross edges • Post order numbers • Applications • Cycles • Topological sorting • Reachability • Connected components

  3. 3 2 5 4 1 6 5 2 4 3 1 3 5 2 4 6 DFS Trees and Forests Convention: Roots in decreasing order; other nodes in increasing order Convention: increasing order 6 1 DFS Tree DFS Trees Forest Note: O(m) to create (check each edge once)

  4. 3 2 5 4 1 6 5 2 4 3 1 3 5 2 4 6 Edge Classification Add all edges  but make them dashed if a marked node is encountered. cross 6 1 backward cross cross forward cross cross backward backward (x, y): cross Tree edge if y is a child of x in DFS forest. Forward edge if y is a descendent of x, but not a child. Backward edge if y is an ancestor of x or if x = y. Cross edge if y is not x and is neither a descendent nor an ancestor of x. backward cross

  5. b c a Observations about Edge Classification • Requires O(m) to create  each edge considered only once • Only go between trees in a forest with cross edges • If we go left to right in building the DFS tree, then all cross edges go from right to left. (For suppose not, then the edge must be a tree edge.) Must not have been visited! All visited nodes are to the left (cross), above or same (backward), or below (forward).

  6. 1 3 5 2 4 6 5 2 4 3 1 6 Postorder Numbers • Given a DFS tree, do a postorder traversal of the tree edges and number the nodes as they are visited. (6) (5) (1) (6) (5) (4) (4) (2) (3) (3) (2) (1) • Can be added as the tree is built, so O(m) (assuming m >> n)

  7. Observations about Postorder Numbers • For each edge xy, where P(x) and P(y) are the postorder numbers for x and y, if xy, then • for a tree edge, P(x) > P(y) • for a forward edge, P(x) > P(y) • for a backward edge, P(x)  P(y) • for a cross edge, P(x) > P(y) • There are many interesting applications of all these ideas  all of which take O(m) time, assuming m >> n. different from the others

  8. Project 5 Cycles • A directed graph G is cyclic iff a DFS-tree of G has a backward edge. • This implies cycle detection can be done in O(m), O(n2) in the worst case for a dense, nearly complete graph. • Proof (sketch) • (if, i.e. If a DFS-tree of G has a backward edge, G is cyclic.) • Let x y be the backward edge. • Then <y, …, x, y> is a cycle. • (only if, i.e. If G is cyclic, a DFS-tree of G has a backward edge.) • Let the cycle be <n1, n2, …, nk, n1>. • If k=1, <n1, n1> is a backward edge. • If k>1, then there is a backward edge. For suppose not, then P(n1)>P(n2)>…>P(nk)>P(n1) and thus P(n1)>P(n1)  a contradiction.

  9. Project 5 Topological Sorting (for acyclic directed graphs) • Recall that partial orders and Hasse diagrams are acyclic directed graphs. • A topological sort of a partial orderingR is an imposed total ordering over the elements such that x precedes y if xRy. • Algorithm: List the nodes in reverse postorder (i.e. push nodes on a stack whenever we assign a postorder number; then pop all of them.)

  10. f b c f d e d f a a c e d e a b c b b6 f5 d4 c3 e2 a1 (6) (1) (5) (3) (2) (4) Topological Sort Example Alphabetical: Reverse Alphabetical: Notes: (1) All edges go to the right. (2) The nodes are correctly and totally ordered. (3) More than one ordering is possible. (6) (5) (1) (4) b6 f5 c4 a3 e2 d1 (2) (3)

  11. Topological Sort: Observations • The algorithm is correct. Proof (sketch): The tail of x y must precede the head because P(x) > P(y), for if not then P(x)  P(y) and we have a backward edge  a contradiction since the graph is acyclic. • The algorithm takes O(m) time to build the DFS forest and push the elements onto the stack and takes O(n) time to pop the elements. Thus, the algorithm runs in O(m) time assuming m >> n. • Why not do regular sort this way? • O(m) is O(n2) in the worst case. • We can sort in O(nlogn) time. • Could we do topological sort using a regular sort? • If not, why not? • Some nodes not comparable  can let them be equal. • If we only have the edges, some nodes that should be comparable through transitivity are not comparable  can do transitive closure to make comparable. • If so, should we? (no, why not?)

  12. Project 5 Reachability • To test if we can reach y from x, build a DFS tree starting at x; y is reachable iff y is in the tree rooted at x. • Proof: clear. • O(m), (O(n2) in the worst case).

  13. Connected Components for Undirected Graphs • Replace each edge with two directed edges and then run the DFS forest algorithm. • O(m) + O(m) = O(m) • We can prove: x and y are in the same connected component of G iff x and y are in the same DFS tree. (homework)

More Related