1 / 58

CHAPTER 13: Graphs

CHAPTER 13: Graphs. Java Software Structures: Designing and Using Data Structures Third Edition John Lewis & Joseph Chase. Chapter Objectives. Define undirected graphs Define directed graphs Define weighted graphs or networks Explore common graph algorithms. Graphs.

jessiemills
Download Presentation

CHAPTER 13: Graphs

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. CHAPTER 13: Graphs Java Software Structures: Designing and Using Data Structures Third Edition John Lewis & Joseph Chase

  2. Chapter Objectives • Define undirected graphs • Define directed graphs • Define weighted graphs or networks • Explore common graph algorithms

  3. Graphs • Like a tree, a graph is made up of nodes and the connections between those nodes • In graph terminology, we refer to the nodes a vertices and the connections as edges • Vertices are typically referred to by label (e.g. A, B, C, D) • Edges are referenced by a paring of vertices (e.g. (A, B) represent an edge between A and B)

  4. Undirected Graphs • An undirected graph is a graph where the pairings representing edges are unordered • Listing an edge as (A, B) means that there is an edge between A and B that can traversed in either direction • For an undirected graph, (A, B) means exactly the same thing as (B, A)

  5. An example undirected graph

  6. Undirected Graphs • Two vertices in a graph are adjacent if there is an edge connecting them • Adjacent vertices are sometimes referred to as neighbors • An edge of a graph that connects a vertex to itself is called a self-loop or a sling • An undirected graph is considered complete if it has the maximum number of edges connecting vertices (n(n-1)/2)

  7. Undirected Graphs • A path is a sequence of edges that connects two vertices in a graph • A, B, D is a path from A to D in our previous example • The length of a path is the number of edges in the path (number of vertices - 1) • An undirected graph is considered connected if for any two vertices in the graph, there is a path between them • The graph in our previous example is connected • The following graph is not connected

  8. An example undirected graph that is not connected

  9. Undirected Graphs • A cycle is a path in which the first and last vertices are repeated • For example, in the previous slide, A, B, C, A is a cycle • A graph that has no cycles is called acyclic • An undirected tree is a connected, acyclic, undirected graph with one element designated as the root

  10. Directed Graphs • A directed graph, or digraph, is a graph where the edges are ordered pairs of vertices • This means that the edge (A, B) and (B, A) are separate, directional edges • Figure 13.1 was described as: Vertices: A, B, C, D Edges: (A, B), (A, C), (B, C), (B, D), (C, D) • Interpreting this as a directed graph yields the graph in Figure 13.3

  11. An example directed graph

  12. Connected and Unconnected Directed Graphs

  13. Directed Graphs • If a directed graph has no cycles, it is possible to arrange the vertices such that vertex A precedes vertex B if an edge exists from A to B • This order of vertices is called topological order • A directed tree is a directed graph that has an element designated as the root and has the following properties • There are no connections from other vertices to the root • Every non-root element has exactly on connection to it • There is a path from the root to every other vertex

  14. Networks • A network or a weighted graph is a graph with weights or costs associated with each edge • Figure 13.5 shows an undirected network of the connections and airfares between cities • Networks may be directed or undirected • Figure 13.6 shows a directed network

  15. A network, or weighted graph

  16. A directed network

  17. Networks • For networks, we represent each edge with a triple including the starting vertex, the ending vertex, and the weight (Boston, New York, 120)

  18. Common Graph Algorithms • For trees, we defined four types of traversals • Generally, we divide graph traversals into two categories • Breadth-first traversal • Depth-first traversal

  19. Common Graph Algorithms • We can construct a breadth-first traversal for a graph similarly to our level-order traversal of a tree • Use a queue and an unordered list • We use the queue to manage the traversal • We use the unordered list to build our result

  20. A Breadth First Iterator /** * Returns an iterator that performs a breadth first search * traversal starting at the given index. * * @param startIndex the index to begin the search from * @return an iterator that performs a breadth first traversal */ public Iterator<T> iteratorBFS(int startIndex) { Integer x; LinkedQueue<Integer> traversalQueue = new LinkedQueue<Integer>(); ArrayUnorderedList<T> resultList = new ArrayUnorderedList<T>(); if (!indexIsValid(startIndex)) return resultList.iterator(); boolean[] visited = new boolean[numVertices]; for (int i = 0; i < numVertices; i++) visited[i] = false; traversalQueue.enqueue(new Integer(startIndex)); visited[startIndex] = true;

  21. A Breadth First Iterator (continued) while (!traversalQueue.isEmpty()) { x = traversalQueue.dequeue(); resultList.addToRear(vertices[x.intValue()]); /** Find all vertices adjacent to x that have not been visited and queue them up */ for (int i = 0; i < numVertices; i++) { if (adjMatrix[x.intValue()][i] && !visited[i]) { traversalQueue.enqueue(new Integer(i)); visited[i] = true; } } } return resultList.iterator(); } 

  22. Common Graph Algorithms • We can construct a depth-first traversal for a graph similarly to our level-order traversal of a tree by replacing the queue with a stack • Use a stack and an unordered list • We use the stack to manage the traversal • We use the unordered list to build our result

  23. A Depth First Iterator /** * Returns an iterator that performs a depth first search * traversal starting at the given index. * * @param startIndex the index to begin the search traversal from * @return an iterator that performs a depth first traversal */ public Iterator<T> iteratorDFS(int startIndex) { Integer x; boolean found; LinkedStack<Integer> traversalStack = new LinkedStack<Integer>(); ArrayUnorderedList<T> resultList = new ArrayUnorderedList<T>(); boolean[] visited = new boolean[numVertices]; if (!indexIsValid(startIndex)) return resultList.iterator(); for (int i = 0; i < numVertices; i++) visited[i] = false; traversalStack.push(new Integer(startIndex)); resultList.addToRear(vertices[startIndex]); visited[startIndex] = true;

  24. A Depth First Iterator (continued) while (!traversalStack.isEmpty()) { x = traversalStack.peek(); found = false; /** Find a vertex adjacent to x that has not been visited and push it on the stack */ for (int i = 0; (i < numVertices) && !found; i++) { if (adjMatrix[x.intValue()][i] && !visited[i]) { traversalStack.push(new Integer(i)); resultList.addToRear(vertices[i]); visited[i] = true; found = true; } } if (!found && !traversalStack.isEmpty()) traversalStack.pop(); } return resultList.iterator(); }

  25. Common Graph Algorithms • Of course, both of these algorithms could be expressed recursively

  26. Common Graph Algorithms • Another common graph algorithm is testing for connectivity • The graph is connected if and only if for each vertex v in a graph containing n vertices, the size of the result of a breadth-first traversal starting a v is n

  27. Connectivity in an undirected graph

  28. Breadth-first traversals for a connected undirected graph

  29. Breadth-first traversals for an unconnected undirected graph

  30. Spanning Trees • A spanning tree is a tree that includes all of the vertices of a graph • The following example shows a graph and then a spanning tree for that graph

  31. A sample graph

  32. A spanning tree for the graph in Figure 13.7

  33. Minimum Spanning Trees • A minimum spanning tree is a spanning tree where the sum of the weights of the edges is less than or equal to the sum of the weights for any other spanning tree for the same graph • The algorithm for creating a minimum spanning tree makes use of a minheap to order the edges

  34. A minimum spanning tree

  35. A Minimum Spanning Tree /** * Returns a minimum spanning tree of the network. * * @return a minimum spanning tree of the network */ public Network mstNetwork() { int x, y; int index; double weight; int[] edge = new int[2]; Heap<Double> minHeap = new Heap<Double>(); Network<T> resultGraph = new Network<T>(); if (isEmpty() || !isConnected()) return resultGraph; resultGraph.adjMatrix = new double[numVertices][numVertices]; for (int i = 0; i < numVertices; i++) for (int j = 0; j < numVertices; j++) resultGraph.adjMatrix[i][j] = Double.POSITIVE_INFINITY; resultGraph.vertices = (T[])(new Object[numVertices]);

  36. A Minimum Spanning Tree boolean[] visited = new boolean[numVertices]; for (int i = 0; i < numVertices; i++) visited[i] = false; edge[0] = 0; resultGraph.vertices[0] = this.vertices[0]; resultGraph.numVertices++; visited[0] = true; /** Add all edges, which are adjacent to the starting vertex, to the heap */ for (int i = 0; i < numVertices; i++) minHeap.addElement(new Double(adjMatrix[0][i])); while ((resultGraph.size() < this.size()) && !minHeap.isEmpty()) { /** Get the edge with the smallest weight that has exactly one vertex already in the resultGraph */ do { weight = (minHeap.removeMin()).doubleValue(); edge = getEdgeWithWeightOf(weight, visited); } while (!indexIsValid(edge[0]) || !indexIsValid(edge[1]));

  37. A Minimum Spanning Tree x = edge[0]; y = edge[1]; if (!visited[x]) index = x; else index = y; /** Add the new edge and vertex to the resultGraph */ resultGraph.vertices[index] = this.vertices[index]; visited[index] = true; resultGraph.numVertices++; resultGraph.adjMatrix[x][y] = this.adjMatrix[x][y]; resultGraph.adjMatrix[y][x] = this.adjMatrix[y][x];

  38. A Minimum Spanning Tree /** Add all edges, that are adjacent to the newly added vertex, to the heap */ for (int i = 0; i < numVertices; i++) { if (!visited[i] && (this.adjMatrix[i][index] < Double.POSITIVE_INFINITY)) { edge[0] = index; edge[1] = I; minHeap.addElement(new Double(adjMatrix[index][i])); } } } return resultGraph; }

  39. Determining the Shortest Path • There are two possibilities for determining the shortest path in a graph • Determine the literal shortest path in terms of the number of edges • Determine the least expensive path in a network

  40. Determining the Shortest Path • The solution to the first of these is a simple variation of our earlier breadth-first traversal algorithm • We simply store two additional pieces of information for each vertex • The path length from the starting point to this vertex • The vertex that is the predecessor of this vertex on that path • Then we modify our loop to terminate when we reach our target vertex

  41. Determining the Shortest Path • The second possibility is to look for the cheapest path in a network • Dijkstra develop an algorithm for this possibility that is similar to our previous algorithm • However, instead of using a queue of vertices, we use a minheap or a priority queue storing vertex, weight pairs based upon total weight • Thus we always traverse through the graph following the cheapest path first

  42. Strategies for Implementing Graphs • There are two principle approaches to implementing graphs • Adjacency lists • Adjacency matrices • The adjacency list approach is modeled closely to the way we implemented linked implementations of trees • However, instead of building a graph node that contains a fixed number of references (as we did with BinaryTreeNode) we will build a graph node that simply maintain a linked lists of references to other nodes • This list is called an adjacency list

  43. Strategies for Implementing Graphs • The second strategy for implementing graphs is to use an adjacency matrix • An adjacency matrix is simply a two-dimensional array where both dimensions are “indexed” by the vertices of the graph • Each position in the matrix contains a boolean that is true if the two associated vertices are connected by an edge, and false otherwise • The following slides show two example of adjacency matrices, one for an undirected graph, the other for a directed graph • An adjacency matrix for a network could store the weights in each cell instead of a boolean

  44. An undirected graph

  45. An adjacency matrix for an undirected graph

  46. A directed graph

  47. An adjacency matrix for a directed graph

  48. A GraphADT /** * GraphADT defines the interface to a graph data structure. * * @author Dr. Chase * @author Dr. Lewis * @version 1.0, 9/17/2008 */ package jss2; import java.util.Iterator; public interface GraphADT<T> { /** * Adds a vertex to this graph, associating object with vertex. * * @param vertex the vertex to be added to this graph */ public void addVertex (T vertex);

  49. A GraphADT (continued) /** * Removes a single vertex with the given value from this graph. * * @param vertex the vertex to be removed from this graph */ public void removeVertex (T vertex); /** * Inserts an edge between two vertices of this graph. * * @param vertex1 the first vertex * @param vertex2 the second vertex */ public void addEdge (T vertex1, T vertex2); /** * Removes an edge between two vertices of this graph. * * @param vertex1 the first vertex * @param vertex2 the second vertex */ public void removeEdge (T vertex1, T vertex2); 

  50. A GraphADT (continued) /** * Returns a breadth first iterator starting with the given vertex. * * @param startVertex the starting vertex * @return a breadth first iterator beginning at the given * vertex */ public Iterator iteratorBFS(T startVertex); /** * Returns a depth first iterator starting with the given vertex. * * @param startVertex the starting vertex * @return a depth first iterator starting at the given vertex */ public Iterator iteratorDFS(T startVertex);

More Related