Graphs. The ultimate data structure. graphs 1

Similar documents
Graphs. The ultimate data structure. graphs 1

Graphs II: Trailblazing

Graphs. The ultimate data structure. graphs 1

Graphs. The ultimate data structure. graphs 1

CHAPTER 2. Graphs. 1. Introduction to Graphs and Graph Isomorphism

Graph Theory. Part of Texas Counties.

Graphs & Digraphs Tuesday, November 06, 2007

Introduction III. Graphs. Motivations I. Introduction IV

Basics of Graph Theory

Varying Applications (examples)

Elements of Graph Theory

Graphs. Pseudograph: multiple edges and loops allowed

CS 311 Discrete Math for Computer Science Dr. William C. Bulko. Graphs

DS UNIT 4. Matoshri College of Engineering and Research Center Nasik Department of Computer Engineering Discrete Structutre UNIT - IV

UNIT 5 GRAPH. Application of Graph Structure in real world:- Graph Terminologies:

Foundations of Discrete Mathematics

Graphs. Introduction To Graphs: Exercises. Definitions:

CSE 100: GRAPH ALGORITHMS

Discrete Mathematics (2009 Spring) Graphs (Chapter 9, 5 hours)

GRAPHS, GRAPH MODELS, GRAPH TERMINOLOGY, AND SPECIAL TYPES OF GRAPHS

Chapter 14. Graphs Pearson Addison-Wesley. All rights reserved 14 A-1

An Introduction to Graph Theory

CS200: Graphs. Prichard Ch. 14 Rosen Ch. 10. CS200 - Graphs 1

UNIT Name the different ways of representing a graph? a.adjacencymatrix b. Adjacency list

Graph definitions. There are two kinds of graphs: directed graphs (sometimes called digraphs) and undirected graphs. An undirected graph

Graphs. Tessema M. Mengistu Department of Computer Science Southern Illinois University Carbondale Room - Faner 3131

Introductory Remarks

Graphs Data Structures

Outline. Graphs. Divide and Conquer.

2. CONNECTIVITY Connectivity

0.0.1 Network Analysis

Chapter 11: Graphs and Trees. March 23, 2008

Understand graph terminology Implement graphs using

CMSC 380. Graph Terminology and Representation

Discrete Mathematics and Probability Theory Fall 2013 Vazirani Note 7

v V Question: How many edges are there in a graph with 10 vertices each of degree 6?

γ(ɛ) (a, b) (a, d) (d, a) (a, b) (c, d) (d, d) (e, e) (e, a) (e, e) (a) Draw a picture of G.

1. a graph G = (V (G), E(G)) consists of a set V (G) of vertices, and a set E(G) of edges (edges are pairs of elements of V (G))

Topological Sort. Here a topological sort would label A with 1, B and C with 2 and 3, and D with 4.

SCHOOL OF ENGINEERING & BUILT ENVIRONMENT. Mathematics. An Introduction to Graph Theory

SELF-BALANCING SEARCH TREES. Chapter 11

Lecture 10. Elementary Graph Algorithm Minimum Spanning Trees

Advanced Algorithms Class Notes for Monday, October 23, 2012 Min Ye, Mingfu Shao, and Bernard Moret

Graphs. A graph is a data structure consisting of nodes (or vertices) and edges. An edge is a connection between two nodes

TIE Graph algorithms

Algorithms: Lecture 10. Chalmers University of Technology

(Refer Slide Time: 02.06)

Further Mathematics 2016 Module 2: NETWORKS AND DECISION MATHEMATICS Chapter 9 Undirected Graphs and Networks

Discrete Mathematics

Graphs. Graph G = (V, E) Types of graphs E = O( V 2 ) V = set of vertices E = set of edges (V V)

22 Elementary Graph Algorithms. There are two standard ways to represent a

Discrete Mathematics for CS Spring 2008 David Wagner Note 13. An Introduction to Graphs

Outline. Introduction. Representations of Graphs Graph Traversals. Applications. Definitions and Basic Terminologies

CS 310 Advanced Data Structures and Algorithms

Lecture Notes. char myarray [ ] = {0, 0, 0, 0, 0 } ; The memory diagram associated with the array can be drawn like this

March 20/2003 Jayakanth Srinivasan,

CS473-Algorithms I. Lecture 13-A. Graphs. Cevdet Aykanat - Bilkent University Computer Engineering Department

Project and Production Management Prof. Arun Kanda Department of Mechanical Engineering Indian Institute of Technology, Delhi

Adjacent: Two distinct vertices u, v are adjacent if there is an edge with ends u, v. In this case we let uv denote such an edge.

Algorithm Design (8) Graph Algorithms 1/2

TIE Graph algorithms

Elementary Graph Algorithms. Ref: Chapter 22 of the text by Cormen et al. Representing a graph:

Logic: The Big Picture. Axiomatizing Arithmetic. Tautologies and Valid Arguments. Graphs and Trees

GRAPHS (Undirected) Graph: Set of objects with pairwise connections. Why study graph algorithms?

How can we lay cable at minimum cost to make every telephone reachable from every other? What is the fastest route between two given cities?

Multidimensional Arrays & Graphs. CMSC 420: Lecture 3

Module 2: NETWORKS AND DECISION MATHEMATICS

(5.2) 151 Math Exercises. Graph Terminology and Special Types of Graphs. Malek Zein AL-Abidin

Practice Problems for the Final

3.1 Basic Definitions and Applications

Computer Science 280 Fall 2002 Homework 10 Solutions

1. Graph and Representation

implementing the breadth-first search algorithm implementing the depth-first search algorithm

(Re)Introduction to Graphs and Some Algorithms

Lecture 5: Graphs. Rajat Mittal. IIT Kanpur

2. True or false: even though BFS and DFS have the same space complexity, they do not always have the same worst case asymptotic time complexity.

Graphs. Terminology. Graphs & Breadth First Search (BFS) Extremely useful tool in modeling problems. Consist of: Vertices Edges

Introduction to Graph Theory

Algorithm Analysis Graph algorithm. Chung-Ang University, Jaesung Lee

Introduction to Engineering Systems, ESD.00. Networks. Lecturers: Professor Joseph Sussman Dr. Afreen Siddiqi TA: Regina Clewlow

The ADT priority queue Orders its items by a priority value The first item removed is the one having the highest priority value

CS Data Structures and Algorithm Analysis

Basic Combinatorics. Math 40210, Section 01 Fall Homework 4 Solutions

Introduction to Graphs

Graph theory. Po-Shen Loh. June We begin by collecting some basic facts which can be proved via bare-hands techniques.

Basic Graph Definitions

Dr. Amotz Bar-Noy s Compendium of Algorithms Problems. Problems, Hints, and Solutions

Graph Algorithms. Definition

Graph: representation and traversal

Characterizing Graphs (3) Characterizing Graphs (1) Characterizing Graphs (2) Characterizing Graphs (4)

MC302 GRAPH THEORY SOLUTIONS TO HOMEWORK #1 9/19/13 68 points + 6 extra credit points

Review: Graph Theory and Representation

Packet #6: Counting & Graph Theory. Applied Discrete Mathematics

Simple graph Complete graph K 7. Non- connected graph

Konigsberg Bridge Problem

Introduction to Graphs. CS2110, Spring 2011 Cornell University

Chapter 9 Graph Algorithms

11/22/2016. Chapter 9 Graph Algorithms. Introduction. Definitions. Definitions. Definitions. Definitions

Undirected Network Summary

CSC Intro to Intelligent Robotics, Spring Graphs

Transcription:

Graphs The ultimate data structure graphs 1

Definition of graph Non-linear data structure consisting of nodes & links between them (like trees in this sense) Unlike trees, graph nodes may be completely unordered, or may be linked in any order suited to the particular application graphs 2

Undirected graphs Simplest form of graph Set of nodes (vertices -- one node is a vertex) and set of links between them (edges) Either or both sets may be empty Each edge connects two vertices; as the name implies, neither vertex is considered to be a point of origin or a point of destination An edge may also connect a vertex to itself graphs 3

Example graph v0 e0 v3 e2 v1 e1 v4 e4 e0 v0 v1 e1 e2 v3 e4 v2 v2 This graph has 5 vertices and 4 edges; a graph is defined by which vertices are connected, and which edges connect them v4 This is the same graph, even though its shape is different graphs 4

Application: an undirected state graph Each vertex represents the state of some object or situation Each edge represents the possibility of moving directly from one state to another There exists a path from one state to another if there is an edge connecting each vertex and any vertices between them graphs 5

Undirected state graph example graphs 6

Directed graphs Each edge has an orientation, or direction One vertex connected by the edge is the source, while the other is the target Directed graphs are diagrammed like undirected graphs, except the edges are represented by arrows instead of lines graphs 7

Directed graph example Each arrow represents the direction of the edge; to get from point a to point f, you must pass through c, d and b c (in that order), but to get from f to a requires only going through b (by the shortest route) e a d b f graphs 8

Directed graph application examples Route diagrams for airline routes Course pre- and co-requisites Program flow charts Programming language syntax diagrams graphs 9

Graph implementations All of the following representations can be used to create an instance of a directed graph in which loops are allowed: adjacency list adjacency matrix edge lists or sets incidence matrices graphs 10

Representing Graphs Adjacency list: specifies vertices adjacent with each vertex in a simple graph can be used for directed graph as well - list terminal vertices adjacent from each vertex Vertex a b c d e Adjacent vertices c,d e a,d a,c,e d,b 11

Adjacency matrix Square grid of true/false values that represent the edges of a graph If the intersection of a row and column has a true value in it, there exists an edge between the vertices represented by the two indexes Since this is a directed graph, the value will be true only if there is an edge from the vertex indicated by the row index to the vertex indicated by the column index graphs 12

Adjacency matrix An adjacency matrix can be stored in a twodimensional array of bools or ints Each vertex is represented by one row and one column For a graph with four vertices, the following declaration could be used: boolean [][] amatrix = new boolean [4][4]; graphs 13

Adjacency matrix The graph above could be represented by the adjacency matrix on the right row [0] [1] [2] [3] column [0] [1] [2] [3] f t f f f f f t f f f f f t t t graphs 14

Representing Graphs: mathematical POV Adjacency matrix: n x n zero-one matrix with 1 representing adjacency, 0 representing non-adjacency Adjacency matrix of a graph is based on chosen ordering of vertices; for a graph with n vertices, there are n! different adjacency matrices Adjacency matrix of graph with few edges is a sparse matrix - many 0s, few 1s 15

Simple graph adjacency matrix With ordering a,b,c,d,e: 0 0 1 1 0 0 0 0 0 1 1 0 0 1 0 1 0 1 0 1 0 1 0 1 0 16

Using adjacency matrices for multigraphs and pseudographs With multiple edges, matrix is no longer zero-one: if more than one edge exists, list the number of edges A loop is represented with a 1 in position i,i Adjacency matrices for simple graphs, including multigraphs and pseudographs, are symmetric 17

Adjacency matrices and digraphs For directed graphs, the adjacency matrix has a 1 in its (i,j)th position if there is an edge from vi to vj Directed multigraphs can be represented by placing the number of edges in in position i,j that exist from vi to vj Adjacency matrices for digraphs are not necessarily symmetric 18

Edge lists Linked lists are used to represent vertices Each vertex is a linked list; nodes in each list contain numbers indicating the target vertices for that particular source vertex In other words, if list A contains a link to vertex B, there is an edge from A to B graphs 19

Edge lists For n vertices, there must be n lists; often the lists are stored as an array of list head references A vertex that is not a source would be represented in the array by a NULL pointer graphs 20

Edge lists [0] [1] [2] [3] 1 3 null 1 The graph above could be repesented by the array of edge lists on the right null null 2 3 graphs 21 null

Incidence Matrices In an adjacency matrix, both rows and columns represent vertices In an incidence matrix, rows represent vertices while columns represent edges A 1 in any matrix position means the edge in that column is incident with the vertex in that row Multiple edges are represented identical columns depicting the edges 22

Incidence Matrix Example e1 e2 e3 e4 e5 e6 e7 e8 e9 a 1 1 1 1 0 0 0 0 0 b 0 0 0 0 1 1 0 0 0 c 0 1 0 0 0 0 1 1 0 d 0 0 0 1 0 0 0 1 1 e 1 0 1 0 0 1 0 0 1 23

Choosing an implementation Adjacency matrix is easier to implement & use than any of the edge-based solutions Frequency of certain operations may dictate another solution graphs 24

Choosing an implementation Both adding and removing edges and checking for the presence of a particular edge are O(N) operations in the worst case for edge lists; may be as low as O(logN) for edge sets, depending on representation Edge lists are very efficient for operations that execute one time for each edge with a particular vertex graphs 25

Disadvantages of adjacency matrix Operations on all edges for a vertex require stepping through entire row (whether or not an entry is an edge) -- this is O(N) If each vertex has very few edges, an adjacency matrix is mostly wasted space graphs 26

Graph traversals Traversal: visiting all nodes in a data structure Can t apply tree traversal methods to graphs, since nodes in a graph don t have the same child/parent relationships Graph traversal methods utilize subsidiary data structures (queues and stacks) to keep track of vertices to be visited graphs2 27

Graph traversals Purpose of traversal algorithm: starting at a given vertex, process the information at that vertex, then move along an edge to process a neighbor When traversal is complete, all vertices that can be reached from the start vertex (but not necessarily all vertices in the graph) have been visited graphs2 28

Depth-first search After processing the initial vertex, a depth-first search moves along an edge to one of the vertex s neighbors Once the second vertex is processed, the search moves along an edge to one of its neighbors The process continues to move forward as long as vertices can be reached in this manner graphs2 29

Depth-first search The search always proceeds forward until no further forward moves can be made Once forward motion is no longer possible at the current node, the search backs up to the previous vertex and visits any previously unvisited neighbors Eventually the search backs up to the original starting node, having visited all nodes that were reachable from this point graphs2 30

Depth-first search example v0 v1 v2 v3 v4 v5 graphs2 31

Breadth-first search Uses queue to keep track of vertices which might still have unprocessed neighbors Initial vertex is processed, marked, and placed in queue Repeats the following until queue is empty: remove vertex from front of queue for each unmarked neighbor of the current vertex, mark the neighbor, then place the neighbor on the queue graphs2 32

Graph Isomorphism The simple graphs G1=(V1,E1) and G2=(V2,E2) are isomorphic if there is a one-to-one and onto function f from V1 to V2 with vertices a and b adjacent in G1 if and only if f(a) and f(b) are adjacent in G2 for all vertices a and b in G1 Function f is called an isomorphism 33

Determining Isomorphism The number of vertices, number of edges, and degrees of the vertices are invariants under isomorphism If any of these quantities differ in two simple graphs, the graphs are not isomorphic If these quantities are the same, the graphs may or may not be isomorphic 34

Determining Isomorphism To show that a function f from the vertex set of graph G to the vertex set of graph H is an isomorphism, we need to show that f preserves edges Adjacency matrices can help with this: we can show that the adjacency matrix of G is the same as the adjacency matrix of H when rows and columns are arranged according to f 35

Example Consider the two graphs below: Both have six vertices and seven edges; Both have four vertices of degree 2 and two vertices of degree 3; The subgraphs of G and H consisting of vertices of degree 2 and the edges connecting them are isomorphic 36

Example continued Need to define a function f and then determine whether or not it is an isomorphism: deg(u1) in G is 2; u1 is not adjacent to any other degree 2 vertex, so the image of u1 must be either v4 or v6 in H can arbitrarily set f(u1) = v6 (if that doesn t work, we can try v4) 37

Example continued Continuing definition of f: Since u2 is adjacent to u1, the possible images of u2 are v3 and v5 We set f(u2) = v3 (again, arbitrarily) Continuing in this fashion, using adjacency and degree of vertices as guides, we derive f for all vertices in G, as shown on next slide 38

Example continued f(u1) = v6 f(u2) = v3 f(u3) = v4 f(u4) = v5 f(u5) = v1 f(u6) = v2 Next, we set up adjacency matrices for G and H, arranging the matrix for H so that the images of G s vertices line up with their corresponding vertices 39

Example continued u1 u2 u3 u4 u5 u6 u1 0 1 0 1 0 0 u2 1 0 1 0 0 1 u3 0 1 0 1 0 0 u4 1 0 1 0 1 0 u5 0 0 0 1 0 1 u6 0 1 0 0 1 0 AG v6 v3 v4 v5 v1 v2 v6 0 1 0 1 0 0 v3 1 0 1 0 0 1 v4 0 1 0 1 0 0 v5 1 0 1 0 1 0 v1 0 0 0 1 0 1 v2 0 1 0 0 1 0 AH 40

Example concluded Since AG = AH, it follows that f preserves edges, and we conclude that f is an isomorphism; thus G and H are isomorphic If f were not an isomorphism, we would not have proved that G and H are not isomorphic, since another function might show isomorphism 41

Paths In an undirected graph, a path of length n from u to v, where n is a positive integer, is a sequence of edges e 1,, e n of the graph such that f(e 1 )={x 0,x 1 }, f(e 2 )={x 1,x 2 },, f(e n )={x n- 1,x n } where x 0 = u and x n = v In a simple graph, we denote this path by its vertex sequence 42

Paths Circuit: a path that begins and ends at the same vertex (i.e., u=v) The path or circuit is said to pass through or traverse the vertices x 1, x 2,, x n-1 Simple path or circuit: path or circuit that does not contain the same edge more than once 43

Example 1 In the simple graph at the left, the path: u1,u2,u4,u5 is a simple path of length 3 since {u1,u2}, {u2,u4}, {u4,u5} all exist as edges 44

Example 1 The path: u1,u2,u5,u4 is not a path, because no edge exists between u2 and u5 The path: u1,u2,u6,u5,u1 is a circuit of length 4 45

Paths and Isomorphism The existence of a simple circuit of length k, where k > 2, is a useful isomorphic invariant for simple graphs If one graph has such a circuit and the other does not, the graphs are not isomorphic 46

Euler circuits & paths An Euler circuit of a graph G is a simple circuit that contains every edge of G An Euler path of graph G is a simple path containing every edge of G 47

Example 1 There are several Euler circuits in this graph, including (a, b, e, c, d, e, a) and (d, c, e, b, a, e, d), for example. Any path that doesn t start at e could be an Euler circuit. This graph does not contain an Euler circuit, but does contain Euler paths. (b, e, d, c, a, b, d, a) and (a, c, d, e, b, d, a, b) are examples. 48

Example 1 This graph contains neither an Euler circuit nor an Euler path. Starting from any of the outside vertices, as in the graph above, you can create a circuit, but you will have to skip at least 3 edges. Starting from e, you would have to skip even more edges to make a circuit. In seeking an Euler path starting from any outside vertex, you can go up or down the diagonal and all the way around, but you would have to reuse one of the inside edges to get to one of the others inside, and then have to reuse that one to get to the last one. 49

Necessary and Sufficient Conditions for Euler Circuits If a graph has an Euler circuit, every vertex must have an even degree Starting from any vertex, you touch that vertex once; returning to it, you touch it one more time - so the initial vertex has degree 2 Each remaining vertex is touched twice each time you pass through it (by the incoming and outgoing edges), so each must have even degree 50

An algorithm for constructing Euler circuits A) Make an initial circuit by starting at a chosen vertex, making a path that returns to this vertex B) Remove those edges already used, leaving a subgraph While edges remain in the subgraph, create a circuit, as in step A, starting from a vertex that was incident with an edge in the circuit from step A follow step B with the new circuit The algorithm concludes when no edges are left (meaning we have an Euler circuit) or no more circuits can be constructed from the remaining edges (meaning we don t) 51

Example 2: applying algorithm Starting from vertex a, create the following circuit: a, e, b, a Removing the edges that were used in the first step, we have the following subgraph Starting from vertex e, we can easily construct a circuit, for example: e, c, d, e Since no edges remain, we know the graph has an Euler circuit 52

Example 3: applying algorithm Starting from a, create a circuit, for example: a, e, d, a Removing the edges used, we get the subgraph: Starting again from e, we can create the circuit e, c, b, e, which leaves behind the subgraphs below: Since neither of these can form a circuit without reusing the edge, we can conclude there isn t an Euler circuit in the graph 53

Finding Euler paths A graph has an Euler path but not an Euler circuit if and only if it has exactly two vertices of odd degree The graph at left has two vertices (a and b) of odd degree; thus, it contains an Euler path (but not an Euler circuit) 54

Hamilton Paths & Circuits Hamilton path: a path that passes through every vertex in a graph exactly once Hamilton circuit: a circuit that passes through every vertex in a graph exactly once 55

Hamilton Paths & Circuits Although there is no simple algorithm to determine the existence of a Hamilton circuit or path, several theorems are known to give sufficient conditions for their existence, including the following: If G is a connected simple graph with n vertices where n 3, then G has a Hamilton circuit if the degree of each vertex is at least n/2 56

Example 4 Using the theorem on the previous slide, we can observe that there are 5 vertices, so n 3; furthermore, each vertex has at least deg(2): therefore, a Hamilton circuit may exist. One such circuit is: a, c, d, e, b, a Note that the theorem only gives a sufficient condition for Hamilton circuits. The graph at left satisfies the theorem, but it is impossible to construct a circuit from any vertex without passing through vertex d more than once. 57

Determining existence of a path Both breadth-first and depth-first searches are suitable tools for helping determine existence of a path between two nodes To find a path from vertex u to vertex v, use u as the start node and run a search if v is visited, then a path exists A more involved problem is determining the best (shortest) path from one node to another

Finding the shortest path It is important to keep in mind that the picture of a graph is not the graph itself so shortest is not simply a matter of physical distance In fact, it might be more appropriate to think in terms of the cheapest path that is, the one that is least costly in terms of whatever resource we re expending In order to find the shortest/cheapest path, we must have some way of measuring the cost (aka the weight) of each edge we must traverse

Weighted edges One way to add a cost dimension to a graph is by adding a weight feature to each edge A weight is simply a non-negative integer associated with the edge we can think of this number as a distance or cost measure We determine the weight of a path by taking the sum of the weights of all the edges involved The shortest path between two vertices can then be defined as the path with the smallest weight

Edsgar Dijkstra and the shortest distance algorithm Dijkstra s algorithm is used to determine the shortest distance from a start node to every vertex in the graph We start with an int array called distance with one element for every vertex goal is to fill the array so that for every vertex v, the value of distance[v] is the weight of the shortest path from a specified start vertex to v

Steps in the algorithm Initialize all elements in distance array to infinity (or some approximation thereof) Initialize distance[start] to 0 shortest distance between a vertex and itself is: don t move At this point, our distance array tells us that it costs us nothing to stay put, and that we can t get from here to anywhere else Or, another way to state it: staying put is, thus far, the only permitted path Now we initialize an empty set of vertices(allowedvertices); we will fill this set with vertices that can be reached from start As the number of paths increases, the set grows

Allowing further paths The algorithm works by gradually loosening the restriction over which vertices can be visited As more vertices are allowed, the distance array is revised to reflect courses that pass through permitted vertices When the algorithm ends, we have allowed all vertices and the distance values are all correct

The big loop We now have an empty set of allowed vertices, and a distance array that reflects this empty state The next step is a loop, shown in pseudocode on the next slide

The big loop for (size=1; size<=n; size++) 1. next = closest vertex to start that is not already in the allowedvertices set 2. add next to allowedvertices 3. revise distance array so that next appears on permitted paths Each step is described in detail in the next several slides

Choosing the next vertex This step determines which of the (as yet) unallowed vertices (those which are not in the set) is closest to the start vertex We choose the unallowed vertex that has the smallest value in the distance array; if several have the minimum value, pick one arbitrarily

Add next to set & revise distance The mechanism for adding the next vertex to the allowedvertices set is implementation-dependent; suffice it to say we just do it To revise the distance array, we must examine each array element and change it if the vertex it represents is not in the allowedvertices set the addition of the next node results in a shorter path to the unallowed node we don t consider nodes that are already allowed because, earlier in the algorithm, we already chose them because their distance from start was less than next s

Pseudocode for revision of distance for (v=0; v<distance.length; v++) { if(!allowedvertices.contains(v) && an edge exists (next, v)) { sum = distance[next] + weight of (next, v) if (sum < distance[v]) distance[v] = sum } }

The weight vs. the path Thus far, we have determined the weight of the shortest path from start to any other vertex We need to keep track of an additional piece of information to glean the path from the weight: we need to know the predecessor of each node in the path

Predecessor array We use another array to keep track of which vertex was next when distance[v] was changed In other words: when distance[v] = sum, then predecessor[v] = next At the conclusion of the algorithm, distance[v] is either the weight of the shortest path from start to v, or, if no path exists, is infinity

Printing a path // the code below prints the path in reverse // that is v start, not start v pathv = v; System.out.println(pathV); while (pathv!= start) { pathv = predecessor[pathv]; System.out.println(pathV); }