Starting from:

$40

DS Lab 9 Graph Solved

 

Lab 9
Graph


In this lab, we will learn how to represent a graph on the computer:

•     Adjacency Matrix

•     Adjacency List

•     Edge List

And two ways to traverse a graph:

•     Breadth First Search (BFS)

•     Depth First Search (DFS)

1. What is Graph?

Graph is the data structure that included vertices and edges. In other words, graph is a set of vertices where some pairs of vertices are connected by edges.

 

Figure 1: Graph

We have three options to represent a graph:

•     Adjacency Matrix

•     Adjacency List

•     Edge List



dcquang@it.tdt.edu.vn                                                                                                                   1

2.     Representations of Graph
2.1.     Adjacency Matrix (AM)
Adjacency Matrix is a 2D array of size V x V where V is the number of vertices in a graph.

Let the 2D array be 𝑎𝑑𝑗[][], a slot 𝑎𝑑𝑗[𝑖][𝑗] = 1 indicates that there is an edge from vertex 𝑖 to vertex 𝑗, otherwise 𝑎𝑑𝑗[𝑖][𝑗] contains 0.

 

Figure 2: Directed Graph

Adjacency matrix for undirected graph is always symmetric.

 

Figure 3: Undirected Graph

Adjacency Matrix is also used to represent weighted graphs. If 𝑎𝑑𝑗[𝑖][𝑗] = 𝑤, then there is an edge from vertex 𝑖 to vertex 𝑗 with weight 𝑤.

 

Figure 4: Weighted Graph

You can create an AdjacencyMatrix class and define the code like this:

public class AdjacencyMatrix{ private int[][] adj;

private final int NUMBER_OF_VERTICES;

public AdjacencyMatrix(int vertices){ NUMBER_OF_VERTICES = vertices;

adj = new int[NUMBER_OF_VERTICES][NUMBER_OF_VERTICES];

}

public void setEgde(int vertexSource, int vertexDestination,

int weight){ try { adj[vertexSource][vertexDestination] = weight; adj[vertexDestination][vertexSource] = weight;

} catch (ArrayIndexOutOfBoundsException indexBounce){ System.out.println("The vertex is invalid");

}

}

public int getEgde(int vertexSource, int vertexDestination){ try{ return adj[vertexSource][vertexDestination];

} catch (ArrayIndexOutOfBoundsException indexBounce){ System.out.println("The vertex is invalid");

}

return -1;

}

public void printGraph(){ for(int i = 0; i < NUMBER_OF_VERTICES; i++){ for(int j = 0;j < NUMBER_OF_VERTICES; j++){

System.out.print(adj[i][j] + " ");

}

System.out.println();

}

}

}
1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

2.2.     Adjacency List (AL)
 

Figure 5: Adjacency List

In Java, there are many collections that you can use to implement Adjacency List like Vector, LinkedList, ArrayList, Map, ... Remember import java.util.* if you want to use Java collections.

We use LinkedList to implement an AdjacencyList class (this code for the graph without weights. If you want to handle weights, you can use Pair<Integer, Integer in Java instead of Integer):

import java.util.*;

public class AdjacencyList{ private int V;  // No. of vertices private LinkedList<Integer adj[]; public AdjacencyList(int v)

{

V = v;

adj = new LinkedList[v]; for (int i=0; i<v; ++i) adj[i] = new LinkedList<Integer();

}

public void addEdge(int u, int v)

{ adj[u].add(v);

}

public void printGraph(){ for(int i = 0; i < V; i++){

System.out.print("Vertex " + i + ": "); System.out.print("head"); for(Integer v: adj[i]){

System.out.print("-" + v);

}

System.out.println();

}

}

}
1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

2.3.     Edge List (EL)
 

Figure 6: Edge List

There are many data structures to implement Edge List, this code use Vector and class IntegerTriple, which is defined by user:

class IntegerTriple{ private Integer weight; private Integer source; private Integer dest;

public IntegerTriple(Integer w, Integer s, Integer d){ weight = w; source = s;

dest = d;

}

public Integer getWeight(){ return weight;

}

public Integer getSource(){ return source;

}

public Integer getDest(){ return dest;

}

@Override

public String toString(){ return weight + " " + source + " " + dest;

}

}

public class EdgeList{ private Vector<IntegerTriple edges;

public EdgeList(){ edges = new Vector<IntegerTriple(); }
1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

}
public void addEdge(int w, int u, int v){ edges.add(new IntegerTriple(w,u,v));

}

public void printGraph(){ for(int i = 0; i < edges.size(); i++){ System.out.println(edges.get(i)); }

}
36

37

38

39

40

41

42

43

44

45

46

3.     Graph traversal algorithms
3.1.     Breadth First Search (BFS)
Review the BFS algorithm that you learned in your theory class. Mapping it to the following code (this code is implemented for Adjacency Matrix):

public void BFS(int s){ boolean visited[] = new boolean[NUMBER_OF_VERTICES]; Queue<Integer queue = new LinkedList<Integer();

visited[s] = true; queue.add(s);

while(!queue.isEmpty()){ int x = queue.poll(); System.out.print(x + " ");

for(int i = 0; i < NUMBER_OF_VERTICES; i++){ if(adj[x][i] != 0 && visited[i] == false){ queue.add(i);

visited[i] = true;

}

}

}

}
1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

3.2.     Depth First Search (DFS)
Review the recursion DFS algorithm that you learned in your theory class. Mapping it to the following code (this code is implemented for Adjacency Matrix):

public void DFS_recur(int v, boolean[] visited){ visited[v] = true; System.out.print(v + " ");

for(int i = 0; i < NUMBER_OF_VERTICES; i++){ if(adj[v][i] != 0 && visited[i] == false){

DFS_recur(i, visited); }

}
1

2

3

4

5

6

7

8

9

10

}

public void DFS(int s){ boolean[] visited = new boolean[NUMBER_OF_VERTICES]; DFS_recur(s, visited); }
11

12

13

14

15

16

4. Exercise

Exercise 1
A graph is saved to file in AM format: (see the picture below)
 

(a)        Read the graph from the file and print the AM on the screen.

(b)        Count the number of vertices.

(c)        Count the number of edges.

(d)        Enumerate neighbors of a vertex u.

(e)        Check the existence of edge (u, v).

Exercise 2
A graph is saved to file in AL format: (see the picture below)
 

(a)        Read the graph from the file and print the AL on the screen.

(b)        Count the number of vertices.

(c)        Count the number of edges.

(d)        Enumerate neighbors of a vertex u.

(e)        Check the existence of edge (u, v).

Exercise 3
A graph is saved to file in EL format: (see the picture below)

 

(a)        Read the graph from the file and print the EL on the screen.

(b)        Count the number of vertices.

(c)        Count the number of edges.

(d)        Enumerate neighbors of a vertex u.

(e)        Check the existence of edge (u, v).

Exercise 4
Choose a graph, and use Adjacency Matrix to represent it. Implement the functions for the below requirements:

(a)        Traverse the graph by using BFS. Print the traversal result on the screen.

(b)        Traverse the graph by using DFS. Print the traversal result on the screen.

(c)        Implement the DFS method without recursion. Print the traversal result on the screen.(Hint: using Stack)

(d)        Implement the IsReachable method to test whether vertex v is reachable from vertex u.

Exercise 5
Write a method in the AdjacencyMatrix class to convert a graph from Adjacency Matrix to Adjacency List.

public AdjacencyList convertToAL(){ ... }
1

2

3


More products