Adam Hacks

A Review of Graphs

You may have noticed that I’ve been putting a lot more work into writing posts for my Computer Science Review series lately. The last installment of this series took a look at binary search trees. This time around we will be taking some time to review one of my favorite data structures: Graphs.

What is a Graph?

If you look at the formal definition of a graph, such as the one that you might get in a discrete mathematics course, you’ll get something along these lines: A graph is an ordered triple (N, A, g) where N is a nonempty set of nodes or vertices, A is a set of arcs or edges, and g is a function associating each arc a with an unordered pair {x, y} of nodes. x and y are the endpoints of the arc and g is a function:

$$g: A \rightarrow \{\{x, y\}\} \mid x \in N \,\, and \,\, y \in N \}$$

What?!

Now, perhaps it’s just me, but that isn’t the easiest of definitions to wrap one’s head around! In fact, when I first encountered this definition in school I wasn’t terribly keen on graphs, but it’s really not hard once you understand what’s going on!

You see, a graph is basically just a collection of nodes and a set of arcs (also called edges) that connect those nodes. If this sounds like a tree there’s a good reason: a tree is actually a type of directed graph!

To get slightly more formal, a graph is a data structure that has the following components:

Let’s take a look at a very simple, undirected graph:

An example graph

This example contains 5 nodes (numbered 0-4) and 5 edges.

Directed vs. Undirected

So, what’s this undirected business with the graph above? Well, it’s actually quite simple. Recall that our edges are a collection of ordered pairs (u, v). In an undirected graph, (u, v) and (v, u) are effectively equivalent because our edges have no direction associated with them.

So, consider the edge from node 1 to node 4. Since there is no direction, this edge runs from node 1 to node 4, but it also runs from node 4 to node 1.

From this, you can probably guess that a directed graph is one in which the edges have a direction associated with them. As such, (u, v) and (v, u) are very different things in a directed graph.

Here’s a simple example of a directed graph:

Example of a directed graph

In this example, we again have an edge connecting node 1 to node 4. This time around, however, we are dealing with a directed graph. In this particular case, the edge connects node 1 to node 4, but not vice versa!

I suppose I can throw in that if this were a discrete math course you’d see that the g component of our definition from earlier gets changed to being a function associating each arc a with an ordered pair (x, y) or nodes such that:

$$g: A \rightarrow \{(x, y)\} \mid x \in N \,\, and \,\, y \in N\}$$

Just like before, I’m not particularly fond of this super formal definition!

This is also a good time to talk about reachability. A node is reachable from another if a path exists between them. So, in our example graph, 4 is reachable from 1 and 3 is reachable from 2 and 0 (just to name a few examples).

The Degree of a Node

A topic that sometimes comes up when dealing with graphs (admittedly more in a formal/mathematical context) is the degree of a node. The degree simply refers to the number of incident edges from a node.

Let’s consider an example:

Example of the degree of a node in a graph

Consider the green node. It should hopefully be pretty clear, despite my terrible artistry, that this node has degree 5.

Loops

There’s one more simple piece of terminology we should get out the way before we continue on. A loop is simply an edge that connects a vertex to itself. So, in the below example, there is a loop on node A.

Example of a loop in a graph

Simple Graphs

A simple graph is simply a graph that has no loops and no parallel edges. Let’s look at an example:

Example of a simple graph

Connected Graph

A graph is said to be a connected graph if there is a path between every pair of vertices. Here’s an example of a connected graph:

Example of a connected graph

As you can see, there does not necessarily need to be a direct connection between every node for a graph to be connected. There just needs to be a path to reach every node. To further illustrate this point, let’s look at an example of a graph that is not connected:

Example of a graph that is not connected

Since there is a node that has no path to it (the red node) this graph is not connected.

Complete Graph

A graph is said to be complete if every node is connected by an edge. A more formal way to say this might be that every node, u, is adjacent to every other node, v, in the graph, G.

Here’s an example:

Example of a complete graph

You may also notice that the example graph I used when discussing the degree of a node is also complete.

Representing Graphs in a Computer

The above is just the absolute basics of graph theory, but it’s enough to get you started. What we haven’t covered so far, however, is how in the world we can represent these complex structures in memory.

Well, there are two primary ways to go about it: an adjacency matrix and an adjacency list. Let’s take a look at each.

Adjacency Matrix

An adjacency matrix is really nothing more than a two-dimensional array. For a graph with N nodes, the adjacency matrix will be of size NxN.

The various rows and columns in the adjacency matrix represent the vertices in a graph. The meaning of each entry depends on if the graph is directed or undirected. If the graph is undirected then the element ai,j of the matrix being a non-zero value indicates that i and j are adjacent in the graph. In the case of a directed graph, a non-zero value at ai,j indicates that there is an arc from node i to node j.

I think this is more clear if we look at an example. Consider the following graph:

Adjacency example

First of all, excuse the fact that I can’t draw to save my life! Other than that, it’s important to note that this is an undirected graph (we’ll revisit that in a moment).

Let’s now take a look at the adjacency matrix for this, which we know should be 16 entries (4 rows and 4 columns), since there are 4 nodes in this graph:

Example adjacency matrix

Reading this is pretty simple. We can see that there is a single edge from node 1 to nodes 1, 2, and 3. There are two edges from node 4 to node 3 and 2 edges from node 3 to node 4.

An interesting thing to note is that the adjacency matrix for an undirected graph is symmetrical. That is, if there is an entry for an edge from node 1 to 2, then there’s also an entry from node 2 to 1.

I think the concept is really quite clear if you compare the graph to the adjacency matrix.

For completeness, let’s look at an example with a directed graph:

Adjacency example with a directed graph

Once again paying no attention to my poor drawing (hey, I’m an engineer, not an artist!), we can see that the adjacency matrix for this graph would be:

Adjacency matrix for a directed graph

This time around we don’t have the symmetry that we’d expect to see in the adjacency matrix for an undirected graph, which should make intuitive sense.

Again, I think it’s pretty easy to ascertain what’s going on here.

One interesting property to note is that the diagonal will indicate the loops in our graph (though there are none in our example):

Example of loops in an adjacency matrix

The Pros of an Adjacency Matrix

Let’s take a moment to examine the pros of using an adjacency matrix to represent a graph.

For one, basic operations like adding an edge, removing an edge, and checking if there is an edge from vertex i to vertex j run in constant time (that is, O(1)).

It’s also worth mentioning that we can push matrix operations to the GPU for high-performance scenarios.

The Cons of an Adjacency Matrix

The obvious drawback of an adjacency matrix is that it uses a lot of memory, due to the NxN size of the matrix. If a graph doesn’t have very many connections then most of this space is wasted, which is why adjacency lists might be a better fit.

Additionally, performing more complex operations, such as getting all of the edges that enter/exit a node, can be quite a bit more expensive than our basic operations.

Example Implementation in Java

An adjacency list is not a complex structure to implement, but let’s take a look at a simple example in Java.

 1package com.hackeradam.graph;
 2/**
 3 * A very simple undirected graph implementation.
 4 * Notice that converting this to be a directed graph implementation
 5 * would be a trivial exercise.
 6 */
 7class Graph {
 8    // The adjacency matrix structure
 9    private int adjMatrix[][];
10    // The number of vertices in the graph
11    private int nVertices;
12    // Initializes the graph
13    public Graph(int nVertices) {
14        this.nVertices = nVertices;
15        adjMatrix = new int[nVertices][nVertices];
16    }
17    // Adds an edge to the graph
18    public void addEdge(int i, int j) {
19        adjMatrix[i-1][j-1] += 1;
20    }
21    // Removes an edge from the graph
22    public void removeEdge(int i, int j) {
23        adjMatrix[i-1][j-1] -= 1;
24    }
25    // Prints the adjacency matrix
26    public String toString() {
27        StringBuilder builder = new StringBuilder();
28        for (int i = 0; i < nVertices; i++) {
29            builder.append(i+1 + ": ");
30            for (int j : adjMatrix[i]) {
31                builder.append(j + " ");
32            }
33            builder.append("\n");
34        }
35        return builder.toString();
36    }
37}
38public class Main {
39    public static void main(String... args) {
40        // Build the example, undirected graph from before
41        Graph g = new Graph(4);
42        g.addEdge(1, 1);
43        g.addEdge(1, 2);
44        g.addEdge(1, 3);
45        g.addEdge(2, 1);
46        g.addEdge(2, 4);
47        g.addEdge(3, 1);
48        g.addEdge(3, 4);
49        g.addEdge(3, 4);
50        g.addEdge(4, 2);
51        g.addEdge(4, 3);
52        g.addEdge(4, 3);
53        System.out.println(g.toString());
54    }
55}

Simple, huh?!

Adjacency List

I mentioned in the previous section that an adjacency matrix can be a poor use of memory when the graphs you’re storing have relatively few arcs. An adjacency list effectively only stores the non-zero entries from the adjacency matrix, making it more efficient in terms of space, though less efficient when it comes time to perform operations on the structure.

The way if works is that we essentially store an array of linked lists for each graph. This results in an evident amount of redundancy when representing an undirected graph, but these redundancy is removed when working with directed graphs.

Let’s start with an example of an adjacency list for an undirected graph:

Adjacency list example graph

The adjacency list for this graph will look something like this:

An adjacency list for an undirected graph

Again, with my poor artistry and terrible handwriting out of the way, I think it’s pretty clear what’s going on here if you just compare the graph to the adjacency list.

Let’s look at one more example, this time with a directed graph (notice how much less redundancy there is this time):

Directed graph adjacency list example

An adjacency list for a directed graph

Example Implementation in Java

Let’s again look at a simple example of how we could implement this in Java. Once again, this is pretty straightforward.

 1package com.hackeradam.graph;
 2import java.util.ArrayList;
 3/**
 4 * A very simple undirected graph implementation.
 5 * Notice that converting this to be a directed graph implementation
 6 * would be a trivial exercise.
 7 */
 8class Graph {
 9    // The array of adjacency lists
10    private ArrayList<ArrayList<Integer>> adjList;
11    // Initializes the graph
12    public Graph(int size) {
13        adjList = new ArrayList<ArrayList<Integer>>(size);
14        for (int i = 0; i < size; i++) {
15            adjList.add(new ArrayList<Integer>());
16        }
17    }
18    // Adds an edge to the graph
19    void addEdge(int i, int j) {
20        adjList.get(i-1).add(j-1);
21    }
22    // Prints the adjacency List
23    void print() {
24        for (int i = 0; i < adjList.size(); i++) {
25            System.out.print("\nVertex: " + (i+1) + ": ");
26            for (int j = 0; j < adjList.get(i).size(); j++) {
27                System.out.print(" -> " + (adjList.get(i).get(j)+1));
28            }
29            System.out.println();
30        }
31    }
32}
33public class Main {
34    public static void main(String... args) {
35        // Build the same undirected graph as we did for the
36        // adjacency matrix example
37        Graph g = new Graph(4);
38        g.addEdge(1, 1);
39        g.addEdge(1, 2);
40        g.addEdge(1, 3);
41        g.addEdge(2, 1);
42        g.addEdge(2, 4);
43        g.addEdge(3, 1);
44        g.addEdge(3, 4);
45        g.addEdge(3, 4);
46        g.addEdge(4, 2);
47        g.addEdge(4, 3);
48        g.addEdge(4, 3);
49        g.print();
50    }
51}

That’s a Wrap!

Well, that is basically all I have to say for this quick review of graphs (though there’s a whole lot more you could say about them). Graphs can be used for all sorts of real-world problems, from representing networks to being the backbone of apps like Facebook and Google Maps.

It’s safe to say that there will eventually be more graph content in futrue review posts!

#Computer-Science #Programming #Discrete-Math