Presentation is loading. Please wait.

Presentation is loading. Please wait.

© 2010 Pearson Addison-Wesley. All rights reserved. Addison Wesley is an imprint of CHAPTER 13: Graphs Java Software Structures: Designing and Using Data.

Similar presentations


Presentation on theme: "© 2010 Pearson Addison-Wesley. All rights reserved. Addison Wesley is an imprint of CHAPTER 13: Graphs Java Software Structures: Designing and Using Data."— Presentation transcript:

1 © 2010 Pearson Addison-Wesley. All rights reserved. Addison Wesley is an imprint of CHAPTER 13: Graphs Java Software Structures: Designing and Using Data Structures Third Edition John Lewis & Joseph Chase

2 1-2 © 2010 Pearson Addison-Wesley. All rights reserved. 1-2 Chapter Objectives Define undirected graphs Define directed graphs Define weighted graphs or networks Explore common graph algorithms

3 1-3 © 2010 Pearson Addison-Wesley. All rights reserved. 1-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 1-4 © 2010 Pearson Addison-Wesley. All rights reserved. 1-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 1-5 © 2010 Pearson Addison-Wesley. All rights reserved. 1-5 An example undirected graph

6 1-6 © 2010 Pearson Addison-Wesley. All rights reserved. 1-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 1-7 © 2010 Pearson Addison-Wesley. All rights reserved. 1-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 1-8 © 2010 Pearson Addison-Wesley. All rights reserved. 1-8 An example undirected graph that is not connected

9 1-9 © 2010 Pearson Addison-Wesley. All rights reserved. 1-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 1-10 © 2010 Pearson Addison-Wesley. All rights reserved. 1-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 1-11 © 2010 Pearson Addison-Wesley. All rights reserved. 1-11 An example directed graph

12 1-12 © 2010 Pearson Addison-Wesley. All rights reserved. 1-12 Connected and Unconnected Directed Graphs

13 1-13 © 2010 Pearson Addison-Wesley. All rights reserved. 1-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 1-14 © 2010 Pearson Addison-Wesley. All rights reserved. 1-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 1-15 © 2010 Pearson Addison-Wesley. All rights reserved. 1-15 A network, or weighted graph

16 1-16 © 2010 Pearson Addison-Wesley. All rights reserved. 1-16 A directed network

17 1-17 © 2010 Pearson Addison-Wesley. All rights reserved. 1-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 1-18 © 2010 Pearson Addison-Wesley. All rights reserved. 1-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 1-19 © 2010 Pearson Addison-Wesley. All rights reserved. 1-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 1-20 © 2010 Pearson Addison-Wesley. All rights reserved. 1-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 iteratorBFS(int startIndex) { Integer x; LinkedQueue traversalQueue = new LinkedQueue (); ArrayUnorderedList resultList = new ArrayUnorderedList (); 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; /** * 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 iteratorBFS(int startIndex) { Integer x; LinkedQueue traversalQueue = new LinkedQueue (); ArrayUnorderedList resultList = new ArrayUnorderedList (); 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 1-21 © 2010 Pearson Addison-Wesley. All rights reserved. 1-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(); } 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 1-22 © 2010 Pearson Addison-Wesley. All rights reserved. 1-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 1-23 © 2010 Pearson Addison-Wesley. All rights reserved. 1-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 iteratorDFS(int startIndex) { Integer x; boolean found; LinkedStack traversalStack = new LinkedStack (); ArrayUnorderedList resultList = new ArrayUnorderedList (); 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; /** * 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 iteratorDFS(int startIndex) { Integer x; boolean found; LinkedStack traversalStack = new LinkedStack (); ArrayUnorderedList resultList = new ArrayUnorderedList (); 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 1-24 © 2010 Pearson Addison-Wesley. All rights reserved. 1-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(); } 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 1-25 © 2010 Pearson Addison-Wesley. All rights reserved. 1-25 Common Graph Algorithms Of course, both of these algorithms could be expressed recursively

26 1-26 © 2010 Pearson Addison-Wesley. All rights reserved. 1-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 1-27 © 2010 Pearson Addison-Wesley. All rights reserved. 1-27 Connectivity in an undirected graph

28 1-28 © 2010 Pearson Addison-Wesley. All rights reserved. 1-28 Breadth-first traversals for a connected undirected graph

29 1-29 © 2010 Pearson Addison-Wesley. All rights reserved. 1-29 Breadth-first traversals for an unconnected undirected graph

30 1-30 © 2010 Pearson Addison-Wesley. All rights reserved. 1-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 1-31 © 2010 Pearson Addison-Wesley. All rights reserved. 1-31 A sample graph

32 1-32 © 2010 Pearson Addison-Wesley. All rights reserved. 1-32 A spanning tree for the graph in Figure 13.7

33 1-33 © 2010 Pearson Addison-Wesley. All rights reserved. 1-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 1-34 © 2010 Pearson Addison-Wesley. All rights reserved. 1-34 A minimum spanning tree

35 1-35 © 2010 Pearson Addison-Wesley. All rights reserved. 1-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 minHeap = new Heap (); Network resultGraph = new Network (); 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]); /** * 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 minHeap = new Heap (); Network resultGraph = new Network (); 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 1-36 © 2010 Pearson Addison-Wesley. All rights reserved. 1-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])); 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 1-37 © 2010 Pearson Addison-Wesley. All rights reserved. 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]; 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 1-38 © 2010 Pearson Addison-Wesley. All rights reserved. 1-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; } /** 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 1-39 © 2010 Pearson Addison-Wesley. All rights reserved. 1-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 1-40 © 2010 Pearson Addison-Wesley. All rights reserved. 1-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 1-41 © 2010 Pearson Addison-Wesley. All rights reserved. 1-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 1-42 © 2010 Pearson Addison-Wesley. All rights reserved. 1-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 1-43 © 2010 Pearson Addison-Wesley. All rights reserved. 1-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 1-44 © 2010 Pearson Addison-Wesley. All rights reserved. 1-44 An undirected graph

45 1-45 © 2010 Pearson Addison-Wesley. All rights reserved. 1-45 An adjacency matrix for an undirected graph

46 1-46 © 2010 Pearson Addison-Wesley. All rights reserved. 1-46 A directed graph

47 1-47 © 2010 Pearson Addison-Wesley. All rights reserved. 1-47 An adjacency matrix for a directed graph

48 1-48 © 2010 Pearson Addison-Wesley. All rights reserved. 1-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 { /** * 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); /** * 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 { /** * 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 1-49 © 2010 Pearson Addison-Wesley. All rights reserved. 1-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); /** * 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 1-50 © 2010 Pearson Addison-Wesley. All rights reserved. 1-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); /** * 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);

51 1-51 © 2010 Pearson Addison-Wesley. All rights reserved. 1-51 A GraphADT (continued) /** * Returns an iterator that contains the shortest path between * the two vertices. * * @param startVertex the starting vertex * @param targetVertex the ending vertex * @return an iterator that contains the shortest path * between the two vertices */ public Iterator iteratorShortestPath(T startVertex, T targetVertex); /** * Returns true if this graph is empty, false otherwise. * * @return true if this graph is empty */ public boolean isEmpty(); /** * Returns true if this graph is connected, false otherwise. * * @return true if this graph is connected */ public boolean isConnected(); /** * Returns an iterator that contains the shortest path between * the two vertices. * * @param startVertex the starting vertex * @param targetVertex the ending vertex * @return an iterator that contains the shortest path * between the two vertices */ public Iterator iteratorShortestPath(T startVertex, T targetVertex); /** * Returns true if this graph is empty, false otherwise. * * @return true if this graph is empty */ public boolean isEmpty(); /** * Returns true if this graph is connected, false otherwise. * * @return true if this graph is connected */ public boolean isConnected();

52 1-52 © 2010 Pearson Addison-Wesley. All rights reserved. 1-52 A GraphADT (continued) /** * Returns the number of vertices in this graph. * * @return the integer number of vertices in this graph */ public int size(); /** * Returns a string representation of the adjacency matrix. * * @return a string representation of the adjacency matrix */ public String toString(); } /** * Returns the number of vertices in this graph. * * @return the integer number of vertices in this graph */ public int size(); /** * Returns a string representation of the adjacency matrix. * * @return a string representation of the adjacency matrix */ public String toString(); }

53 1-53 © 2010 Pearson Addison-Wesley. All rights reserved. 1-53 A NetworkADT /** * NetworkADT defines the interface to a network. * * @author Dr. Lewis * @author Dr. Chase * @version 1.0, 9/17/2008 */ package jss2; import java.util.Iterator; public interface NetworkADT extends GraphADT { /** * Inserts an edge between two vertices of this graph. * * @param vertex1 the first vertex * @param vertex2 the second vertex * @param weight the weight */ public void addEdge (T vertex1, T vertex2, double weight); /** * NetworkADT defines the interface to a network. * * @author Dr. Lewis * @author Dr. Chase * @version 1.0, 9/17/2008 */ package jss2; import java.util.Iterator; public interface NetworkADT extends GraphADT { /** * Inserts an edge between two vertices of this graph. * * @param vertex1 the first vertex * @param vertex2 the second vertex * @param weight the weight */ public void addEdge (T vertex1, T vertex2, double weight);

54 1-54 © 2010 Pearson Addison-Wesley. All rights reserved. 1-54 A NetworkADT (continued) /** * Returns the weight of the shortest path in this network. * * @param vertex1 the first vertex * @param vertex2 the second vertex * @return the weight of the shortest path in this network */ public double shortestPathWeight(T vertex1, T vertex2); } /** * Returns the weight of the shortest path in this network. * * @param vertex1 the first vertex * @param vertex2 the second vertex * @return the weight of the shortest path in this network */ public double shortestPathWeight(T vertex1, T vertex2); }

55 1-55 © 2010 Pearson Addison-Wesley. All rights reserved. 1-55 The Graph class /** * Graph represents an adjacency matrix implementation of a graph. * * @author Dr. Lewis * @author Dr. Chase * @version 1.0, 9/16/2008 */ package jss2; import jss2.exceptions.*; import java.util.*; public class Graph implements GraphADT { protected final int DEFAULT_CAPACITY = 10; protected int numVertices; // number of vertices in the graph protected boolean[][] adjMatrix; // adjacency matrix protected T[] vertices; // values of vertices /** * Graph represents an adjacency matrix implementation of a graph. * * @author Dr. Lewis * @author Dr. Chase * @version 1.0, 9/16/2008 */ package jss2; import jss2.exceptions.*; import java.util.*; public class Graph implements GraphADT { protected final int DEFAULT_CAPACITY = 10; protected int numVertices; // number of vertices in the graph protected boolean[][] adjMatrix; // adjacency matrix protected T[] vertices; // values of vertices

56 1-56 © 2010 Pearson Addison-Wesley. All rights reserved. 1-56 The Graph class (continued) /** * Creates an empty graph. */ public Graph() { numVertices = 0; this.adjMatrix = new boolean[DEFAULT_CAPACITY][DEFAULT_CAPACITY]; this.vertices = (T[])(new Object[DEFAULT_CAPACITY]); } /** * Creates an empty graph. */ public Graph() { numVertices = 0; this.adjMatrix = new boolean[DEFAULT_CAPACITY][DEFAULT_CAPACITY]; this.vertices = (T[])(new Object[DEFAULT_CAPACITY]); }

57 1-57 © 2010 Pearson Addison-Wesley. All rights reserved. 1-57 Graph - addEdge /** * Inserts an edge between two vertices of the graph. * * @param vertex1 the first vertex * @param vertex2 the second vertex */ public void addEdge (T vertex1, T vertex2) { addEdge (getIndex(vertex1), getIndex(vertex2)); } /** * Inserts an edge between two vertices of the graph. * * @param index1 the first index * @param index2 the second index */ public void addEdge (int index1, int index2) { if (indexIsValid(index1) && indexIsValid(index2)) { adjMatrix[index1][index2] = true; adjMatrix[index2][index1] = true; } /** * Inserts an edge between two vertices of the graph. * * @param vertex1 the first vertex * @param vertex2 the second vertex */ public void addEdge (T vertex1, T vertex2) { addEdge (getIndex(vertex1), getIndex(vertex2)); } /** * Inserts an edge between two vertices of the graph. * * @param index1 the first index * @param index2 the second index */ public void addEdge (int index1, int index2) { if (indexIsValid(index1) && indexIsValid(index2)) { adjMatrix[index1][index2] = true; adjMatrix[index2][index1] = true; }

58 1-58 © 2010 Pearson Addison-Wesley. All rights reserved. 1-58 Graph - addVertex /** * Adds a vertex to the graph, expanding the capacity of the graph * if necessary. It also associates an object with the vertex. * * @param vertex the vertex to add to the graph */ public void addVertex (T vertex) { if (numVertices == vertices.length) expandCapacity(); vertices[numVertices] = vertex; for (int i = 0; i <= numVertices; i++) { adjMatrix[numVertices][i] = false; adjMatrix[i][numVertices] = false; } numVertices++; } /** * Adds a vertex to the graph, expanding the capacity of the graph * if necessary. It also associates an object with the vertex. * * @param vertex the vertex to add to the graph */ public void addVertex (T vertex) { if (numVertices == vertices.length) expandCapacity(); vertices[numVertices] = vertex; for (int i = 0; i <= numVertices; i++) { adjMatrix[numVertices][i] = false; adjMatrix[i][numVertices] = false; } numVertices++; }


Download ppt "© 2010 Pearson Addison-Wesley. All rights reserved. Addison Wesley is an imprint of CHAPTER 13: Graphs Java Software Structures: Designing and Using Data."

Similar presentations


Ads by Google