Depth-First Search D B A C E Depth-First Search Depth-First Search

Slides:



Advertisements
Similar presentations
© 2004 Goodrich, Tamassia Depth-First Search1 DB A C E.
Advertisements

Depth-First Search1 Part-H2 Depth-First Search DB A C E.
Graphs – Depth First Search ORD DFW SFO LAX
© 2004 Goodrich, Tamassia Breadth-First Search1 CB A E D L0L0 L1L1 F L2L2.
Depth-First Search1 DB A C E. 2 Outline and Reading Definitions (§6.1) Subgraph Connectivity Spanning trees and forests Depth-first search (§6.3.1) Algorithm.
Breadth-First Search1 Part-H3 Breadth-First Search CB A E D L0L0 L1L1 F L2L2.
© 2004 Goodrich, Tamassia Depth-First Search1 DB A C E.
1 Graphs: Concepts, Representation, and Traversal CSC401 – Analysis of Algorithms Lecture Notes 13 Graphs: Concepts, Representation, and Traversal Objectives:
CSC311: Data Structures 1 Chapter 13: Graphs I Objectives: Graph ADT: Operations Graph Implementation: Data structures Graph Traversals: DFS and BFS Directed.
1 Graph Algorithms Lecture 09 Asst. Prof. Dr. Bunyarit Uyyanonvara IT Program, Image and Vision Computing Lab. School of Information and Computer Technology.
CSC 213 – Large Scale Programming. Today’s Goals  Make Britney sad through my color choices  Revisit issue of graph terminology and usage  Subgraphs,
Graphs Part 1. Outline and Reading Graphs (§13.1) – Definition – Applications – Terminology – Properties – ADT Data structures for graphs (§13.2) – Edge.
October 22, DFS, BFS, Biconnectivity, Digraphs 1 CS 221 West Virginia University.
Chapter 6 Graphs ORD DFW SFO LAX
GRAPHS 1. Outline 2  Undirected Graphs and Directed Graphs  Depth-First Search  Breadth-First Search.
1 prepared from lecture material © 2004 Goodrich & Tamassia COMMONWEALTH OF AUSTRALIA Copyright Regulations 1969 WARNING This material.
Depth-First Search1 DB A C E. 2 Depth-first search (DFS) is a general technique for traversing a graph A DFS traversal of a graph G – Visits all the vertices.
1 Subgraphs A subgraph S of a graph G is a graph such that The vertices of S are a subset of the vertices of G The edges of S are a subset of the edges.
Depth-First Search Lecture 21: Graph Traversals
CSC401: Analysis of Algorithms 6-1 CSC401 – Analysis of Algorithms Chapter 6 Graphs Objectives: Introduce graphs and data structures Discuss the graph.
CSC 213 – Large Scale Programming Lecture 31: Graph Traversals.
1 COMP9024: Data Structures and Algorithms Week Eleven: Graphs (I) Hui Wu Session 1, 2016
Nattee Niparnan. Graph  A pair G = (V,E)  V = set of vertices (node)  E = set of edges (pairs of vertices)  V = (1,2,3,4,5,6,7)  E = ((1,2),(2,3),(3,5),(1,4),(4,
© 2010 Goodrich, Tamassia Breadth-First Search1 CB A E D L0L0 L1L1 F L2L2.
Graphs ORD SFO LAX DFW Graphs 1 Graphs Graphs
CSC 172 DATA STRUCTURES.
BCA-II Data Structure Using C Submitted By: Veenu Saini
Data Structures & Algorithm Analysis lec(8):Graph T. Souad alonazi
Breadth-First Search L0 L1 L2
Breadth-First Search (BFS)
Graphs – Breadth First Search
Graphs 10/24/2017 6:47 AM Presentation for use with the textbook Data Structures and Algorithms in Java, 6th edition, by M. T. Goodrich, R. Tamassia, and.
Searching Graphs ORD SFO LAX DFW Spring 2007
Breadth-First Search L0 L1 L2 C B A E D F Breadth-First Search
Breadth-First Search L0 L1 L2
COMP9024: Data Structures and Algorithms
COMP9024: Data Structures and Algorithms
Chapter 14 Graph Algorithms
CS120 Graphs.
Directed Graphs Directed Graphs 1 Shortest Path Shortest Path
Graphs Part 1.
Graphs.
Graphs.
Breadth-First Search L0 L1 L2 C B A E D F Breadth-First Search
Spanning Trees Longin Jan Latecki Temple University based on slides by
Depth-First Search D B A C E Depth-First Search Depth-First Search
Breadth-First Search L0 L1 L2 C B A E D F Breadth-First Search
Breadth-First Search (BFS)
Depth-First Search D B A C E Depth-First Search Depth-First Search
Elementary Graph Algorithms
What is a Graph? a b c d e V= {a,b,c,d,e} E= {(a,b),(a,c),(a,d),
Chapter 11 Graphs.
Depth-First Search Graph Traversals Depth-First Search DFS.
Graphs ORD SFO LAX DFW Graphs Graphs
Subgraphs, Connected Components, Spanning Trees
Depth-First Search D B A C E Depth-First Search Depth-First Search
Searching Graphs ORD SFO LAX DFW Spring 2007
Graphs Part 1 ORD SFO LAX DFW
Copyright © Aiman Hanna All rights reserved
Depth-First Search CSE 2011 Winter April 2019.
Depth-First Search D B A C E 4/13/2019 5:23 AM Depth-First Search
Algorithms: Design and Analysis
Breadth-First Search L0 L1 L2 C B A E D F Breadth-First Search
Breadth-First Search L0 L1 L2 C B A E D F 4/25/2019 3:12 AM
Depth-First Search CSE 2011 Winter April 2019.
Chapter 14 Graphs © 2011 Pearson Addison-Wesley. All rights reserved.
Applications of BFS CSE 2011 Winter /17/2019 7:03 AM.
Breadth-First Search L0 L1 L2 C B A E D F 5/14/ :22 AM
Breadth-First Search L0 L1 L2 C B A E D F 7/28/2019 1:03 PM
Graph Traversals Some applications require visiting every vertex in the graph exactly once. The application may require that vertices be visited in some.
Presentation transcript:

Depth-First Search D B A C E Depth-First Search Depth-First Search 1/1/2019 6:18 PM Depth-First Search D B A C E Depth-First Search

Subgraphs A subgraph S of a graph G is a graph such that The vertices of S are a subset of the vertices of G The edges of S are a subset of the edges of G A spanning subgraph of G is a subgraph that contains all the vertices of G Subgraph Spanning subgraph Depth-First Search

Non connected graph with two connected components Connectivity A graph is connected if there is a path between every pair of vertices A connected component of a graph G is a maximal connected subgraph of G Connected graph Non connected graph with two connected components Depth-First Search

Trees and Forests A (free) tree is an undirected graph T such that Depth-First Search 1/1/2019 6:18 PM Trees and Forests Any node can be the root to have a rooted tree A (free) tree is an undirected graph T such that T is connected T has no cycles A forest is an undirected graph without cycles The connected components of a forest are trees Tree Forest Depth-First Search

Spanning Trees and Forests A spanning tree of a connected graph is a spanning subgraph that is a tree A spanning forest of a graph is a spanning subgraph that is a forest Graph Spanning tree Depth-First Search

Traversal of Graphs Traversal: given G = (V,E) and vertex v, find or visit all wV, such that w connects v Depth First Search (DFS) Breadth First Search (BFS) Applications Connected component Spanning trees … Depth-First Search

Depth-First Search (DFS) 1/1/2019 6:18 PM Depth-First Search (DFS) A general technique for traversing a graph DFS traversal of graph G Visits all the vertices and edges of G Determines whether G is connected Computes the connected components of G Computes a spanning forest of G Complexity: O(n + m ) for a graph with n vertices and m edges DFS for other graph problems (with less memory requirement) Find a path between two given vertices Find a cycle DFS is to graphs what preorder is to binary trees Depth-First Search

DFS Algorithm Begin the search by visiting the start vertex v If v has an unvisited neighbor, traverse it recursively Simple pseudo code from another book void dfs(int v){ node_pointer w; visited[v]=TRUE; printf(“%5d”, v); for (w=graph[v]; w; w=w->link) if (!visited[w->vertex]) dfs(w->vertex); } Depth-First Search

DFS Algorithm The algorithm uses a mechanism for setting and getting “labels” of vertices and edges Algorithm DFS(G, v) Input graph G and a start vertex v of G Output labeling of the edges of G in the connected component of v as discovery edges and back edges v.setLabel(VISITED) for all e  G.incidentEdges(v) if e.getLabel() = UNEXPLORED w  e.opposite(v) if w.getLabel() = UNEXPLORED e.setLabel(DISCOVERY) DFS(G, w) else e.setLabel(BACK) Algorithm DFS(G) Input graph G Output labeling of the edges of G as discovery edges and back edges for all u  G.vertices() u.setLabel(UNEXPLORED) for all e  G.edges() e.setLabel(UNEXPLORED) for all v  G.vertices() if v.getLabel() = UNEXPLORED DFS(G, v) Depth-First Search

Example via Recursive Calls Start vertex: 0 Traverse order: 0, 1, 3, 7, 4, 5, 2, 6 Equivalent adjacency list Usually sorted vertex 0 -> 1 -> 2 vertex 1 -> 0 -> 3 -> 4 vertex 2 -> 0 -> 5 -> 6 vertex 3 -> 1 -> 7 vertex 4 -> 1 -> 7 vertex 5 -> 2 -> 7 vertex 6 -> 2 -> 7 vertex 7 -> 3 -> 4 -> 5 -> 6 1 2 3 4 5 6 7 Animation Depth-First Search

Example via Stack Start vertex: 0 Quiz! Start vertex: 0 Traverse order: 0, 1, 3, 7, 4, 5, 2, 6 Stack contents at each step: Output Stack 0 2 1 1 2 4 3 0 3 2 4 7 1 7 2 4 6 5 4 3 4 2 4 6 5 7 1 5 2 4 6 7 2 2 2 4 6 6 5 0 6 2 4 6 7 2 1 2 3 4 5 6 7 vertex 0 -> 1 -> 2 vertex 1 -> 0 -> 3 -> 4 vertex 2 -> 0 -> 5 -> 6 vertex 3 -> 1 -> 7 vertex 4 -> 1 -> 7 vertex 5 -> 2 -> 7 vertex 6 -> 2 -> 7 vertex 7 -> 3 -> 4 -> 5 -> 6 Depth-First Search

Another Example via Stack Quiz! Start vertex: 4 Traverse order: ? Stack contents at each step: 1 2 3 4 5 6 7 vertex 0 -> 1 -> 2 vertex 1 -> 0 -> 3 -> 4 vertex 2 -> 0 -> 5 -> 6 vertex 3 -> 1 -> 7 vertex 4 -> 1 -> 7 vertex 5 -> 2 -> 7 vertex 6 -> 2 -> 7 vertex 7 -> 3 -> 4 -> 5 -> 6 Depth-First Search

Example in Textbook unexplored vertex visited vertex unexplored edge C E A A visited vertex unexplored edge discovery edge back edge D B A C E D B A C E Depth-First Search

Example (cont.) D B A C E D B A C E D B A C E D B A C E Depth-First Search

DFS and Maze Traversal DFS is similar to a classic strategy for exploring a maze We mark each intersection, corner and dead end (vertex) visited We mark each corridor (edge) traversed We keep track of the path back to the entrance (start vertex) by means of a rope (recursion stack) Depth-First Search

Properties of DFS Property 1 Property 2 DFS(G, v) visits all the vertices and edges in the connected component of v Property 2 The discovery edges labeled by DFS(G, v) form a spanning tree of the connected component of v D B A C E Depth-First Search

Analysis of DFS Setting/getting a vertex/edge label takes O(1) time Each vertex is labeled twice once as UNEXPLORED once as VISITED Each edge is labeled twice once as DISCOVERY or BACK Method incidentEdges is called once for each vertex DFS runs in O(n + m) time provided the graph is represented by the adjacency list structure Recall that Sv deg(v) = 2m Depth-First Search

Path Finding We can specialize the DFS algorithm to find a path between two given vertices u and z using the template method pattern We call DFS(G, u) with u as the start vertex We use a stack S to keep track of the path between the start vertex and the current vertex As soon as destination vertex z is encountered, we return the path as the contents of the stack Algorithm pathDFS(G, v, z) v.setLabel(VISITED) S.push(v) if v = z return S.elements() for all e  v.incidentEdges() if e.getLabel() = UNEXPLORED w  e.opposite(v) if w.getLabel() = UNEXPLORED e.setLabel(DISCOVERY) S.push(e) pathDFS(G, w, z) S.pop(e) else e.setLabel(BACK) S.pop(v) Depth-First Search

Cycle Finding Algorithm cycleDFS(G, v, z) v.setLabel(VISITED) S.push(v) for all e  v.incidentEdges() if e.getLabel() = UNEXPLORED w  e.opposite(v) S.push(e) if w.getLabel() = UNEXPLORED e.setLabel(DISCOVERY) pathDFS(G, w, z) S.pop(e) else T  new empty stack repeat o  S.pop() T.push(o) until o = w return T.elements() S.pop(v) We can specialize the DFS algorithm to find a simple cycle using the template method pattern We use a stack S to keep track of the path between the start vertex and the current vertex As soon as a back edge (v, w) is encountered, we return the cycle as the portion of the stack from the top to vertex w Depth-First Search

Applications of DFS DFS applications Reference Cycle detection in a graph Topological sorting Finding strongly connected components Path finding Detecting bipartite graph Solving puzzles/games Reference Depth-First Search