graph search
play

Graph Search Lecture 15 Friday, March 13, 2020 L A T EXed: - PowerPoint PPT Presentation

Algorithms & Models of Computation CS/ECE 374 B, Spring 2020 Graph Search Lecture 15 Friday, March 13, 2020 L A T EXed: January 19, 2020 04:19 Miller, Hassanieh (UIUC) CS374 1 Spring 2020 1 / 50 Part I Graph Basics Miller,


  1. Algorithms & Models of Computation CS/ECE 374 B, Spring 2020 Graph Search Lecture 15 Friday, March 13, 2020 L A T EXed: January 19, 2020 04:19 Miller, Hassanieh (UIUC) CS374 1 Spring 2020 1 / 50

  2. Part I Graph Basics Miller, Hassanieh (UIUC) CS374 2 Spring 2020 2 / 50

  3. Why Graphs? Graphs help model networks which are ubiquitous: transportation 1 networks (rail, roads, airways), social networks (interpersonal relationships), information networks (web page links), and many problems that don’t even look like graph problems. Fundamental objects in Computer Science, Optimization, 2 Combinatorics Many important and useful optimization problems are graph 3 problems Graph theory: elegant, fun and deep mathematics 4 Miller, Hassanieh (UIUC) CS374 3 Spring 2020 3 / 50

  4. Graph Definition An undirected (simple) graph G = ( V , E ) is a 2 -tuple: V is a set of vertices (also referred 1 to as nodes/points) E is a set of edges where each edge 2 e ∈ E is a set of the form { u , v } with u , v ∈ V and u � = v . Example In figure, G = ( V , E ) where V = { 1 , 2 , 3 , 4 , 5 , 6 , 7 , 8 } and E = {{ 1 , 2 } , { 1 , 3 } , { 2 , 3 } , { 2 , 4 } , { 2 , 5 } , { 3 , 5 } , { 3 , 7 } , { 3 , 8 } , { 4 , 5 } , { 5 , 6 } , { 7 , 8 }} . Miller, Hassanieh (UIUC) CS374 4 Spring 2020 4 / 50

  5. Example: Modeling Problems as Search State Space Search Many search problems can be modeled as search on a graph. The trick is figuring out what the vertices and edges are. Missionaries and Cannibals Three missionaries, three cannibals, one boat, one river Boat carries two people, must have at least one person Must all get across At no time can cannibals outnumber missionaries How is this a graph search problem? What are the vertices? What are the edges? Miller, Hassanieh (UIUC) CS374 5 Spring 2020 5 / 50

  6. Example: Missionaries and Cannibals Graph Miller, Hassanieh (UIUC) CS374 6 Spring 2020 6 / 50

  7. Notation and Convention Notation An edge in an undirected graphs is an unordered pair of nodes and hence it is a set. Conventionally we use ( u , v ) for { u , v } when it is clear from the context that the graph is undirected. u and v are the end points of an edge { u , v } 1 Multi-graphs allow 2 loops which are edges with the same node appearing as both 1 end points multi-edges : different edges between same pairs of nodes 2 In this class we will assume that a graph is a simple graph unless 3 explicitly stated otherwise. Miller, Hassanieh (UIUC) CS374 7 Spring 2020 7 / 50

  8. Graph Representation I Adjacency Matrix Represent G = ( V , E ) with n vertices and m edges using a n × n adjacency matrix A where A [ i , j ] = A [ j , i ] = 1 if { i , j } ∈ E and A [ i , j ] = A [ j , i ] = 0 1 if { i , j } �∈ E . Advantage: can check if { i , j } ∈ E in O (1) time 2 Disadvantage: needs Ω( n 2 ) space even when m ≪ n 2 3 Miller, Hassanieh (UIUC) CS374 8 Spring 2020 8 / 50

  9. Graph Representation II Adjacency Lists Represent G = ( V , E ) with n vertices and m edges using adjacency lists: For each u ∈ V , Adj ( u ) = { v | { u , v } ∈ E } , that is 1 neighbors of u . Sometimes Adj ( u ) is the list of edges incident to u . Advantage: space is O ( m + n ) 2 Disadvantage: cannot “easily” determine in O (1) time whether 3 { i , j } ∈ E By sorting each list, one can achieve O (log n ) time 1 By hashing “appropriately”, one can achieve O (1) time 2 Note: In this class we will assume that by default, graphs are represented using plain vanilla (unsorted) adjacency lists. Miller, Hassanieh (UIUC) CS374 9 Spring 2020 9 / 50

  10. A Concrete Representation Assume vertices are numbered arbitrarily as { 1 , 2 , . . . , n } . Edges are numbered arbitrarily as { 1 , 2 , . . . , m } . Edges stored in an array/list of size m . E [ j ] is j th edge with info on end points which are integers in range 1 to n . Array Adj of size n for adjacency lists. Adj [ i ] points to adjacency list of vertex i . Adj [ i ] is a list of edge indices in range 1 to m . Miller, Hassanieh (UIUC) CS374 10 Spring 2020 10 / 50

  11. A Concrete Representation Array of edges E e j information including end point indices Array of adjacency lists List of edges (indices) that are incident to v i v i Miller, Hassanieh (UIUC) CS374 11 Spring 2020 11 / 50

  12. A Concrete Representation: Advantages Edges are explicitly represented/numbered. Scanning/processing all edges easy to do. Representation easily supports multigraphs including self-loops. Explicit numbering of vertices and edges allows use of arrays: O (1) -time operations are easy to understand. Can also implement via pointer based lists for certain dynamic graph settings. Miller, Hassanieh (UIUC) CS374 12 Spring 2020 12 / 50

  13. Part II Connectivity Miller, Hassanieh (UIUC) CS374 13 Spring 2020 13 / 50

  14. Connectivity Given a graph G = ( V , E ) : path: sequence of distinct vertices v 1 , v 2 , . . . , v k such that 1 { v i , v i +1 } ∈ E for 1 ≤ i ≤ k − 1 . The length of the path is k − 1 (the number of edges in the path) and the path is from v 1 to v k . Note: a single vertex u is a path of length 0 . Miller, Hassanieh (UIUC) CS374 14 Spring 2020 14 / 50

  15. Connectivity Given a graph G = ( V , E ) : path: sequence of distinct vertices v 1 , v 2 , . . . , v k such that 1 { v i , v i +1 } ∈ E for 1 ≤ i ≤ k − 1 . The length of the path is k − 1 (the number of edges in the path) and the path is from v 1 to v k . Note: a single vertex u is a path of length 0 . cycle: sequence of distinct vertices v 1 , v 2 , . . . , v k such that 2 { v i , v i +1 } ∈ E for 1 ≤ i ≤ k − 1 and { v 1 , v k } ∈ E . Single vertex not a cycle according to this definition. Caveat: Some times people use the term cycle to also allow vertices to be repeated; we will use the term tour. Miller, Hassanieh (UIUC) CS374 14 Spring 2020 14 / 50

  16. Connectivity Given a graph G = ( V , E ) : path: sequence of distinct vertices v 1 , v 2 , . . . , v k such that 1 { v i , v i +1 } ∈ E for 1 ≤ i ≤ k − 1 . The length of the path is k − 1 (the number of edges in the path) and the path is from v 1 to v k . Note: a single vertex u is a path of length 0 . cycle: sequence of distinct vertices v 1 , v 2 , . . . , v k such that 2 { v i , v i +1 } ∈ E for 1 ≤ i ≤ k − 1 and { v 1 , v k } ∈ E . Single vertex not a cycle according to this definition. Caveat: Some times people use the term cycle to also allow vertices to be repeated; we will use the term tour. A vertex u is connected to v if there is a path from u to v . 3 Miller, Hassanieh (UIUC) CS374 14 Spring 2020 14 / 50

  17. Connectivity Given a graph G = ( V , E ) : path: sequence of distinct vertices v 1 , v 2 , . . . , v k such that 1 { v i , v i +1 } ∈ E for 1 ≤ i ≤ k − 1 . The length of the path is k − 1 (the number of edges in the path) and the path is from v 1 to v k . Note: a single vertex u is a path of length 0 . cycle: sequence of distinct vertices v 1 , v 2 , . . . , v k such that 2 { v i , v i +1 } ∈ E for 1 ≤ i ≤ k − 1 and { v 1 , v k } ∈ E . Single vertex not a cycle according to this definition. Caveat: Some times people use the term cycle to also allow vertices to be repeated; we will use the term tour. A vertex u is connected to v if there is a path from u to v . 3 The connected component of u , con ( u ) , is the set of all vertices 4 connected to u . Is u ∈ con ( u ) ? Miller, Hassanieh (UIUC) CS374 14 Spring 2020 14 / 50

  18. Connectivity contd Define a relation C on V × V as uCv if u is connected to v 1 7 9 In undirected graphs, connectivity is 1 2 3 a reflexive, symmetric, and transitive relation. Connected components are 4 5 10 8 the equivalence classes. 6 Graph is connected if only one 2 connected component. Miller, Hassanieh (UIUC) CS374 15 Spring 2020 15 / 50

  19. Connectivity Problems Algorithmic Problems Given graph G and nodes u and v , is u connected to v ? 1 Given G and node u , find all nodes that are connected to u . 2 Find all connected components of G . 3 Miller, Hassanieh (UIUC) CS374 16 Spring 2020 16 / 50

  20. Connectivity Problems Algorithmic Problems Given graph G and nodes u and v , is u connected to v ? 1 Given G and node u , find all nodes that are connected to u . 2 Find all connected components of G . 3 Can be accomplished in O ( m + n ) time using BFS or DFS . BFS and DFS are refinements of a basic search procedure which is good to understand on its own. Miller, Hassanieh (UIUC) CS374 16 Spring 2020 16 / 50

  21. Basic Graph Search in Undirected Graphs Given G = ( V , E ) and vertex u ∈ V . Let n = | V | . Explore ( G , u ): Visited [1 . . n ] ← FALSE // ToExplore , S : Lists Add u to ToExplore and to S Visited [ u ] ← TRUE while ( ToExplore is non-empty) do Remove node x from ToExplore for each edge xy in Adj ( x ) do if ( Visited [ y ] = FALSE ) Visited [ y ] ← TRUE Add y to ToExplore Add y to S Output S Miller, Hassanieh (UIUC) CS374 17 Spring 2020 17 / 50

  22. Example 1 9 7 2 3 4 5 10 8 6 Miller, Hassanieh (UIUC) CS374 18 Spring 2020 18 / 50

  23. Properties of Basic Search Proposition Explore( G , u ) terminates with S = con ( u ) . Miller, Hassanieh (UIUC) CS374 19 Spring 2020 19 / 50

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend