1 / 76

Data Structures and Algorithms - 05 Graph Algorithms

Data Structures and Algorithms - 05 Graph Algorithms. Fall 2004 Major part of this presentation is courtesy of Dr.Bingol. Content. Motivation Graph Directed Graph Undirected Graph Representation Implementation Algorithms Graph Traversal Shortest Path Minimum Cost Spanning Trees

zita
Télécharger la présentation

Data Structures and Algorithms - 05 Graph Algorithms

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. Data Structures and Algorithms - 05Graph Algorithms Fall 2004 Major part of this presentation is courtesy of Dr.Bingol

  2. Content • Motivation • Graph • Directed Graph • Undirected Graph • Representation • Implementation • Algorithms • Graph Traversal • Shortest Path • Minimum Cost Spanning Trees • Critical Path Analysis

  3. Motivation

  4. Motivation ...Graphs are everywhere

  5. Motivation ...Graphs are everywhere 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 530 531 5xx 572 SWE programme 501 510 511 512 513 520 521 522 5xx 571

  6. Directed Graph

  7. Directed Graph DefinitionA directed graph, or digraph , is an ordered pair G = (V, E) with the following properties: • The first component, V, is a finite, non-empty set. The elements of V are called the vertices of G. • The second component, E, is a finite set of ordered pairs of vertices. That is, E  V x V . The elements of are called the edges of G. ExampleG = (V, E)V = {a, b, c, d}E = { (a,b), (a,c), (b,c), (c,a), (c,d), (d,d) } RemarkE cannot contain more than one instance of a given edge. (a,b) is different then (b,a). Eg. Consider a downwhill (a,b) cities. Although the distance is the same, the time it takes to travel a2b and b2a maybe different….

  8. Directed Graph ... Head, Tail, Adjacent TerminologyConsider a directed graph G = (V, E). • Each element of V is called a vertex  or a node  of G. Hence, V is the set of vertices (or nodes) of G. • Each element of E is called an edge  or an arc of G. Hence, E is the set of edges (or arcs) of G. • An edge (v,w)  E can be represented as vw . An arrow that points from v to w is known as a directed arc  . Vertex w is called the head of the arc because it is found at the arrow head. Conversely, v is called the tail of the arc. Finally, vertex w is said to be adjacent  to vertex v.

  9. Directed Graph ... Out-degree, In-degree TerminologyConsider a directed graph G = (V, E). • An edge e=(v,w) is said to emanate from vertex v. We use notation to denote A(v) the set of edges emanating from vertex v. That is, A(v) = {(a,b)  E : a=v} • The out-degree of a node is the number of edges emanating from that node. Therefore, the out-degree of v is |A(v)| • An edge e=(v,w) is said to be incident on vertex w. We use notation I(w) to denote the set of edges incident on vertex w. That is, I(w) = {(a,b)  E : b=w} • The in-degree   of a node is the number of edges incident on that node. Therefore, the in-degree of w is |I(v)|

  10. Directed Graph ... Path DefinitionA path in a directed graph G = (V, E) is a non-empty sequence of vertices P = {v1, v2, ..., vk}where vi  V for 1  i  k such that (vi, vi+1)  E for 1  i  k. The length of path P is k-1. ExampleP1 = (a)P2 = (b, c)P3 = (a, b, c)P4 = (a, c, a, c, a, c, a, c, a, c, a, c, a) QuestionWhat is the maximum path length?

  11. Directed Graph ... Successor, Predecessor TerminologyConsider the path P = {v1, v2, ..., vk} in directed graph G = (V, E). • Vertex vi+1 is the successor of vertex vi for 1  i < k. Each element vi of path P (except the last) has a successor. • Vertex vi-1 is the predecessor of vertex vi for 1 < i  k. Each element vi of path P (except the first) has a predecessor. Example{a, b, c, d}

  12. Directed Graph ... Simple path, Cycle, Loop TerminologyConsider the path P = {v1, v2, ..., vk} in directed graph G = (V, E). • A path P is called a simple path if and only if vi  vj for all i and j such that 1  i < j k. However, it is permissible for v1 = vk. • A cycle  is a path P of non-zero length in which v1 = vk. The length of a cycle is just the length of the path P. • A loop  is a cycle of length one. That is, it is a path of the form {v, v}. • A simple cycle   is a path that is both a cycle and simple. Example{a, b, c, d}{c, a, c, d}{a, b, c, a}{a, c, a, c, a}

  13. Directed Graph ... Directed Acyclic Graph DefinitionA directed, acyclic graph (DAG) is a directed graph that contains no cycles. RemarkTrees  DAG.DAG  Tree

  14. Undirected Graph

  15. Undirected Graph DefinitionAn undirected graph is an ordered pair G = (V, E) with the following properties: • The first component, V, is a finite, non-empty set. The elements of V are called the vertices of G. • The second component, E, is a finite set of sets. Each element of E is a set that is comprised of exactly two (distinct) vertices. The elements of E are called the edges of G. ExampleG = ( V, E)V = {a, b, c, d}E = { {a,b}, {a,c}, {b,c}, {c,d} } Remark • {a,b} = {b,c}  undirected *eg. full duplex communication link between nodes • There cannot be an edge from a node to itself in an undirected graph

  16. Undirected Graph ... Incident TerminologyConsider a undirected graph G = (V, E). • An edge e={v,w}  E is said to emanate from and incident on both vertices v and w. • The set of edges emanating from a vertex v is the set A(v) = {(v0,v1)  E : v0 = v  v1 = v} • The set of edges incident on a vertex w is I(w) = A(w)

  17. LabeledGraph DefinitionA graph which has been annotated in some way is called a labeledgraph. RemarkBoth edges and vertices can be labeled

  18. Representation

  19. Representation Consider a directed graph G = (V, E). • Since E  V  V, graph G contains at most |V|2 edges. • There are possible sets of edges for a given set of vertices .

  20. Representation ...Adjacency Matrix for DAG Consider a directed graph G = (V, E) with V = {v1, v2, ..., vn}. • The simplest graph representation scheme uses an n x n matrix A of zeroes and ones given by • The matrix A is called an adjacency matrix.

  21. Representation ...Adjacency Matrix for DAG ... Example Remark • The number of ones in the adjacency matrix is equal to the number of edges in the graph • Each one in the ith row corresponds to an edge that emanates from vertex vi. • Each one in the ith column corresponds to an edge incident on vertex vi.

  22. Representation ...Adjacency Matrix for undirected Represent an undirected graph G = (V, E) with V = {v1, v2, ..., vn}, using an n x n matrix A of zeroes and ones given by

  23. Representation ...Adjacency Matrix for undirected ... Example Remark • Since {vi, vj} = {vj, vi}, matrix A is symmetric about the diagonal. That is, aij = aji • All of the entries on the diagonal are zero. That is, aii = 0 for 1  i  n

  24. Representation ...Adjacency Matrix for undirected ... Example Remark • Since {vi, vj} = {vj, vi}, matrix A is symmetric about the diagonal. That is, aij = aji • All of the entries on the diagonal are zero. That is, aii = 0 for 1  i  n

  25. Representation > Adjacency Matrix ... Complexity • Since the adjacency matrix has |V|2 entries, the amount of spaced needed to represent the edges of a graph is O( |V|2 ) regardless of the actual number of edges in the graph. • If |E| << |V|2 then most of the entries are 0 • Wasteful representation !

  26. Representation > Adjacency Matrix ... Sparse and Dense Graphs DefinitionA sparse graph is a graph G = (V, E) in which |E| = O( |V| ) DefinitionA dense graph is a graph G = (V, E) in which |E| = ( |V|2 )

  27. Representation > Adjacency Matrix ... Adjacency Lists

  28. RepresentationComparison of Representations

  29. Implementation

  30. Implementation

  31. Implementation ...Vertex import java.util.Enumeration; publicinterface Vertex extends Comparable { int getNumber(); Object getWeight(); Enumeration getIncidentEdges(); Enumeration getEmanatingEdges(); Enumeration getPredecessors(); Enumeration getSuccessors(); }

  32. Implementation ...Edge publicinterface Edge extends Comparable { Vertex getV0(); Vertex getV1(); Object getWeight(); boolean isDirected(); Vertex getMate(Vertex vertex); }

  33. Implementation ...Graph import java.util.Enumeration; publicinterface Graph extends Container { int getNumberOfEdges(); int getNumberOfVertices(); boolean isDirected(); void addVertex(int v); void addVertex(int v, Object weight); Vertex getVertex(int v); void addEdge(int v, int w); void addEdge(int v, int w, Object weight); Edge getEdge(int v, int w); boolean isEdge(int v, int w); boolean isConnected(); boolean isCyclic(); Enumeration getVertices(); Enumeration getEdges(); void depthFirstTraversal(PrePostVisitor visitor, int start); void breadthFirstTraversal(Visitor visitor, int start); }

  34. Implementation ...Directed Graph publicinterfaceDigraphextendsGraph{ booleanisStronglyConnected(); voidtopologicalOrderTraversal(Visitorvisitor); }

  35. Graph Traversal

  36. Graph Traversal Depth-First Traversal • similar to depth-first tree traversal • because there is not root, we must specify a starting node • because a graph may be cyclic, we must prevent infinite recursion

  37. Graph Traversal Depth-First Traversal ... The depth-first traversal visits the nodes in the order c, a, b, d Remark • A depth-first traversal only follows edges that lead to unvisited vertices. • if we omit the edges that are not followed, the remaining edges form a tree. • The depth-first traversal of this tree is equivalent to the depth-first traversal of the graph

  38. Graph Traversal > Depth-First Traversal ...Implementation publicabstractclassAbstractGraph extendsAbstractContainer implementsGraph{ ... publicvoid depthFirstTraversal(PrePostVisitor prepostvisitor, int i) { boolean aflag[] = newboolean[numberOfVertices]; for (int j = 0; j < numberOfVertices; j++) aflag[j] = false; depthFirstTraversal(prepostvisitor, vertex[i], aflag); } privatevoid depthFirstTraversal( PrePostVisitor prepostvisitor, Vertex vertex1, boolean aflag[]) { if (prepostvisitor.isDone()) return; prepostvisitor.preVisit(vertex1); aflag[vertex1.getNumber()] = true; for (Enumeration enumeration = vertex1.getSuccessors(); enumeration.hasMoreElements(); ) { Vertex vertex2 = (Vertex) enumeration.nextElement(); if (!aflag[vertex2.getNumber()]) depthFirstTraversal(prepostvisitor, vertex2, aflag); } prepostvisitor.postVisit(vertex1); } }

  39. Graph Traversal Breadth-First Traversal • similar to breadth-first tree traversal • uses a queue of vertices • because there is not root, we must specify a starting node • because a graph may be cyclic, we must ensure that a vertex is enqueued only once

  40. Graph Traversal Breadth-First Traversal ... The breadth-first traversal visits the nodes in the order a, b, c, d

  41. Graph Traversal > Breadth-First Traversal ...Implementation publicabstractclassAbstractGraph extendsAbstractContainer implementsGraph{ ... publicvoid breadthFirstTraversal(Visitor visitor, int i) { boolean aflag[] = newboolean[numberOfVertices]; for (int j = 0; j < numberOfVertices; j++) aflag[j] = false; QueueAsLinkedList queueaslinkedlist = new QueueAsLinkedList(); aflag[i] = true; queueaslinkedlist.enqueue(vertex[i]); while (!queueaslinkedlist.isEmpty() && !visitor.isDone()) { Vertex vertex1 = (Vertex) queueaslinkedlist.dequeue(); visitor.visit(vertex1); for (Enumeration enumeration = vertex1.getSuccessors(); enumeration.hasMoreElements(); ) { Vertex vertex2 = (Vertex) enumeration.nextElement(); if (!aflag[vertex2.getNumber()]) { aflag[vertex2.getNumber()] = true; queueaslinkedlist.enqueue(vertex2); } } } } ... }

  42. Graph TraversalTopological Sort • DefinitionConsider a directed acyclic graph G = (V, E).A topological sort of the vertices of G is a sequenceS = { v1, v2, ..., v|V| } in which each element of V appears exactly once.For every pair of distinct vertices vi and vj in the sequence S, if vi vj is an edge in G, i.e., (vi ,vj)  E, then i < j.

  43. Graph TraversalTopological Order Traversal • a traversal that visits the vertices of a DAG in the order given by the topological sort • compute the in-degrees of the vertices • repeatedly select a vertex with zero in-degree, visit it, and then “remove it from the graph” S1 = { a, b, c, d, e, f, g, h, i } S2 = { a, c, b, f, e, d, h, g, i } S3 = { a, b, d, e, g, c, f, h, i } ... There are many

  44. Graph TraversalApplications • Is it connected • Is there any cycles 3 7 2 9 8 5 1 0 4 7 6

  45. Graph Traversal > ApplicationsConnectedness DefinitionAn undirected graph G = (V, E) is connectedif there is a path in G between every pair of vertices in V.The connected sub-graphs of a graph are called connected components.

  46. Graph Traversal > ApplicationsConnectedness DefinitionA directed graph G = (V, E) is strongly connected if there is a path in G between every pair of vertices in V. DefinitionA directed graph G = (V, E) is weakly connected if the underlying undirected graph Ğ is connected.

  47. Graph Traversal > ApplicationsConnectedness Algorithm For all vertices Start from each vertex Traverse the graph Mark every visited vertex If there is an unvisited vertex, unconnected

  48. Graph Traversal > ApplicationsCycle Algorithm Apply topological-order traversal

  49. Shortest Path

  50. Shortest PathDistance • Distance between two vertices • 2-9 • 3-9 • 7-4 3 7 2 9 8 5 1 0 4 7 6

More Related