Graph Data Structures for Beginners

Graph Data Structures for Beginners

In this post, we are going to explore non-linear data structures like graphs. We are going to cover the central concepts and typical applications.

You are probably using programs that use graphs (and trees). Let’s say for instance that you want to know the shortest path between your workplace and home you can use graph algorithms to get the answer! We are going to explore this and other fun challenges.

In the previous post, we explore linear data structures like arrays, linked lists, sets, stacks and so on. This post builds on top of what we learned.

This post is part of a tutorial series:

Learning Data Structures and Algorithms (DSA) for Beginners

  1. Intro to algorithm’s time complexity and Big O notation

  2. Eight time complexities that every programmer should know

  3. Data Structures for Beginners: Arrays, HashMaps, and Lists

  4. Graph Data Structures for Beginners  you are here

  5. Trees Data Structures for Beginners

  6. Self-balanced Binary Search Trees

  7. Appendix I: Analysis of Recursive Algorithms

Here is the summary of the operations that we are going to cover on this post:

 Adjacency ListAdjacency Matrix
SpaceO(|V| + |E|)O(|V|2)
addVertexO(1)O(|V|2)
removeVertexO(|V| + |E|)O(|V|2)
addEdgeO(1)O(1)
removeEdge (using Array)O(|E|)O(1)
removeEdge (using HashSet)O(1)O(1)
getAdjacentsO(|E|)O(|V|)
isAdjacent (using Array)O(|E|)O(1)
isAdjacent (using HashSet)O(1)O(1)

Graphs Basics

A graph is a data structure where a node can have zero or more adjacent elements.

The connection between two nodes is called edge. Nodes can also be called vertices.

graph-parts.jpg

The degree is the number of edges connected to a vertex. E.g., the purple vertex has a degree of 3 while the blue one has a degree of 1.

If the edges are bi-directional, then we have a undirected graph. But, if the edges have a direction, then we have a directed graph or di-graph for short. You can think of it as a one-way street (directed) or two-way street (undirected).

directed-vs-undirected-graph.jpg

Vertex can have edges that go to itself (e.g., blue node), this is called self-loop.

A graph can have cycles which means that if you traverse through the node, you could get to the same node more than once. The graph without cycles is called acyclic graph.

cyclic-vs-acyclic-directed-graph.jpg

Also, acyclic undirected graphs are called tree. We are going to cover trees in depth in the next post.

Not all vertices have to be connected in the graph. You might have isolated nodes or even separated subgraphs. If all nodes are has a least one edge, then we have a connected graph. When all nodes are connected to all other nodes, then we have a complete graph.

connected-vs-complete-graph.jpg

For a complete graph, each node has to have #nodes - 1 edges. In the previous example we have 7 vertices, so each node has 6 edges.

Graph Applications

When edges have values/cost assigned to them, we say we have a weighted graph. If the weight is absent, we can assume it’s 1.

airports-weighted-graph.jpg

Weighted graphs have many applications depending on the domain where you need to solve a problem. To name a few:

  • Airline Traffic (image above)

    • Node/vertex = Airport
    • Edges = direct flights between two airports
    • Weight = miles between two airports
  • GPS Navigation

    • Node = road insersection
    • Edge = road
    • Weigth = time required to go from one intersection to another
  • Networks routing

    • Node = server
    • Edge = data link
    • Weight = connection speed

In general, graphs have many real-world applications like:

  • Electronic circuits
  • Flight reservations
  • Driving directions
  • Telcom: Cell tower frequency planning
  • Social networks. E.g., Facebook uses a graph for suggesting friends
  • Recommendations: Amazon/Netflix uses graphs to make suggestions products/movies
  • Graphs help to plan logistics of delivering goods

map-graph.jpg

We just learned the basics of graphs and some applications. Let’s learn now how to represent graphs in code.

Representing graphs

Thre are two primary ways of representing graph:

  1. Adjacency list
  2. Adjacency Matrix

Let’s explain it with the following directed graph (digraph) as an example:

digraph.png

We a digraph with 4 nodes. When a vertex has link to itself (e.g. a) is called self-loop.

Adjacency Matrix

The adjacency matrix is one way of representing a graph using a two-dimensional array (NxN matrix). In the intersection of nodes, we add 1 (or other weight) if they are connected and 0 or - if they are not connected.

Using the same example as before, we can build the following adjacency matrix:

Adjacency Matrix

 

1

2

3

4

5

 

a b c d e

a 1 1 - - -

b - - 1 - -

c - - - 1 -

d - 1 1 - -

As you can see, the matrix list all nodes horizontally and vertically. If there a few connections we called sparse graph if there are many connections (close to the max number of links) we called it dense graph. If all possible connections are reached, then we have a complete graph.

It’s important to notice that for undirected graphs the adjacency matrix will always be symmetrical by the diagonal. However, that’s not always the case on a digraph (like our example).

What is the time complexity of finding connections of two vertices?

Querying if two nodes are connected in an adjacency matrix is O(1).

 

What is the space complexity?

Storing a graph as an adjacency matrix has a space complexity of O(n2), where n is the number of vertices. Also, represented as O(|V|2)

 

What is the runtime to add a vertex?

The vertices are stored as a VxV matrix. So, everytime a vertex is added, the matrix needs to be reconstructed to a V+1xV+1.

Adding a vertex on a adjacency matrix is O(|V|2)

 

What about getting the adjacent nodes?

Since the matrix has a VxV matrix, to get all the adjacent nodes to a given vertex, we would have to go to the node row and get all its edges with the other nodes.

In our previous example, let’s say we want all the adjacent nodes to b. We have to get the full row where b with all the other nodes.

 

1

2

 

a b c d e

b - - 1 - -

 

We have to visit all nodes so,

Getting adjacent nodes on an adjacency matrix is O(|V|)

Imagine that you need to represent Facebook network as a graph. You would have to create a matrix of 2 billion x 2 billion, where most of it would be empty! Nobody would know everybody else just a few thousands at most.

In general, we deal with sparse graphs so the matrix will waste a lot of space. That’s why in most implementation we would use an adjacency list rather than the matrix.

Adjacency List

Adjacency List is one of the most common ways to represent graphs. Each node has a list of all the nodes connected to it.

Graphs can be represented as an adjacency list using an Array (or HashMap) containing the nodes. Each of this node entries includes a list (array, linked list, set, etc.) that list its adjacent nodes.

For instance in the graph above we have that a has an connection to b and also a self-loop to itself. In turn, b has a connection to c and so on:

Adjacency List

 

1

2

3

4

 

a -> { a b }

b -> { c }

c -> { d }

d -> { b c }

As you can imagine if you want to know if a node is connected to another node, you would have to go through the list.

Querying if two nodes are connected in an adjacency list is O(n), where n is the number of vertices. Also represented as O(|V|)

 

What about the space complexity?

Storing a graph as an adjacency list has a space complexity of O(n), where n is the sum of vertices and edges. Also, represented as O(|V| + |E|)

Adjacency List Graph HashMap Implementation

The adjacency list is the most common way of representing graphs. There are several ways to implement the adjacency list:

One of the most simple is using a HashMap. The key is the value of the node, and the value is an array of adjacency.

Adjacency List as a Hashmap

 

1

2

3

4

5

6

 

const graph = {

a: ['a', 'b'],

b: ['c'],

c: ['d'],

d: ['b', 'c']

}

Graph usually needs the following operations:

  • Add and remove vertices
  • Add and remove edges

Adding and removing vertices involves updating the adjacency list.

Let’s say that we want to remove the vertex b. We could do delete graph['b'];, however, we still have to remove the references on the adjacency list on d and a.

Everytime we remove a node, we would have to iterate through all the nodes’ list O(|V| + |E|). Can do better? We will answer that later, first let’s *implement our list in a more object-oriented way so we can swap implementations easily.

Adjacency List Graph OO Implementation

Let’s start with the Node class that holds the vertex’s value and its adjacent vertices. We can also have helper functions for adding and removing adjacent nodes from the list.

 

NodeCommented Code

 

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

 

class Node {

constructor(value) {

this.value = value;

this.adjacents = []; // adjacency list

}

addAdjacent(node) {

this.adjacents.push(node);

}

removeAdjacent(node) {

const index = this.adjacents.indexOf(node);

if(index > -1) {

this.adjacents.splice(index, 1);

return node;

}

}

getAdjacents() {

return this.adjacents;

}

isAdjacent(node) {

return this.adjacents.indexOf(node) > -1;

}

}

Notice that adjacent runtime is O(1), while remove adjacent is O(|E|). What if instead of an array use a HashSet ? It could be O(1). But, let first get it working and later we can make it faster.

Make it work. Make it right. Make it faster.

Ok, now that we have the Node class, let’s build the Graph class that can perform operations such as adding/removing vertices and edges.

Graph.constructor

Graph.constructorFull Code

 

1

2

3

4

5

6

7

8

9

10

 

class Graph {

constructor(edgeDirection = Graph.DIRECTED) {

this.nodes = new Map();

this.edgeDirection = edgeDirection;

}

// ...

}

Graph.UNDIRECTED = Symbol('directed graph'); // one-way edges

Graph.DIRECTED = Symbol('undirected graph'); // two-ways edges

The first thing that we need to know is if the graph is directed or undirected. That makes a difference when we are adding edges.

 

Graph.addEdge

Two add an edge we need two nodes. One is the source, and the other is the destination.

Graph.addEdgeFull Code

 

1

2

3

4

5

6

7

8

9

10

11

12

 

addEdge(source, destination) {

const sourceNode = this.addVertex(source);

const destinationNode = this.addVertex(destination);

sourceNode.addAdjacent(destinationNode);

if(this.edgeDirection === Graph.UNDIRECTED) {

destinationNode.addAdjacent(sourceNode);

}

return [sourceNode, destinationNode];

}

We add an edge from the source vertex to the destination. If we have an undirected graph, then we also add from target node to source since it’s bidirectional.

The runtime of adding an edge from a graph adjacency list is: O(1)

If we try to add an edge and the nodes don’t exist, we need to create them first. Let’s do that next!

 

Graph.addVertex

The way we create a node is that we add it to the this.nodes Map. The map store a key/value pair, where the key is the vertex’s value while the map value is the instance of the node class. Take a look at line 5-6:

Graph.addVertexFull Code

 

1

2

3

4

5

6

7

8

9

 

addVertex(value) {

if(this.nodes.has(value)) {

return this.nodes.get(value);

} else {

const vertex = new Node(value);

this.nodes.set(value, vertex);

return vertex;

}

}

If the node already exists we don’t want to overwrite it. So, we first check if it already exists if not then we create it.

The runtime of adding a vertex from a graph adjacency list is: O(1)

 

Graph.removeVertex

Removing a node from the graph, it’s a little bit more involved. We have to check if the node to be deleted it’s in use as an adjacent node.

Graph.removeVertexFull Code

 

1

2

3

4

5

6

7

8

9

 

removeVertex(value) {

const current = this.nodes.get(value);

if(current) {

for (const node of this.nodes.values()) {

node.removeAdjacent(current);

}

}

return this.nodes.delete(value);

}

We have to through each vertex and then each adjacent node (edges).

The runtime of removing a vertex from a graph adjacency list is: O(|V| + |E|)

Finally, let’s remove implement removing an edge!

 

Graph.removeEdge

Removing an edge is pretty straightforward and similar to addEdge.

Graph.removeVertexFull Code

 

1

2

3

4

5

6

7

8

9

10

11

12

13

14

 

removeEdge(source, destination) {

const sourceNode = this.nodes.get(source);

const destinationNode = this.nodes.get(destination);

if(sourceNode && destinationNode) {

sourceNode.removeAdjacent(destinationNode);

if(this.edgeDirection === Graph.UNDIRECTED) {

destinationNode.removeAdjacent(sourceNode);

}

}

return [sourceNode, destinationNode];

}

The main difference between addEdge and removeEdge is that:

  • If the vertices don’t exist, we won’t create them.
  • We use Node.removeAdjacent instead of Node.addAdjacent.

Since removeAdjacent has to go through all the adjacent vertices we have the following runtime:

The runtime of removing an edge from a graph adjacency list is O(|E|)

We are going to explore how to search values from a node.

Breadth-frirst search (BFS) - Graph search

Breadth-first search is a way to navigate a graph from an initial vertex by visiting all the adjacent nodes first.

Breadth-First-Search-Algorithm.gif

Let’s see how we can accomplish this in code:

Graph.bfsFull Code

 

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

 

*bfs(first) {

const visited = new Map();

const visitList = new Queue();

visitList.add(first);

while(!visitList.isEmpty()) {

const node = visitList.remove();

if(node && !visited.has(node)) {

yield node;

visited.set(node);

node.getAdjacents().forEach(adj => visitList.add(adj));

}

}

}

As you can see we are using a Queue where the first node in, is also the first node to be visited (FIFO).

We are also using JavaScript generators, notice the * in front of the function. We are using a generator to iterate one value at a time. That’s useful for large graphs (millions of nodes) because in most cases you don’t need to visit every single node.

This an example of how to use the BFS that we just created:

 

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

 

const graph = new Graph(Graph.UNDIRECTED);

const [first] = graph.addEdge(1, 2);

graph.addEdge(1, 3);

graph.addEdge(1, 4);

graph.addEdge(5, 2);

graph.addEdge(6, 3);

graph.addEdge(7, 3);

graph.addEdge(8, 4);

graph.addEdge(9, 5);

graph.addEdge(10, 6);

bfsFromFirst = graph.bfs(first);

bfsFromFirst.next().value.value; // 1

bfsFromFirst.next().value.value; // 2

bfsFromFirst.next().value.value; // 3

bfsFromFirst.next().value.value; // 4

// ...

You can find more examples of usage in the test cases. Let’s move on to the DFS!

Depth-first search (DFS) - Graph search

Depth-first search is another way to navigate a graph from an initial vertex by recursively the first adjacent node of each vertex found.

Depth-First-Search.gif

The iterative implementation of a DFS is identical to the BFS, but instead of using a Queue you use a Stack:

Graph.dfsFull Code

 

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

 

*dfs(first) {

const visited = new Map();

const visitList = new Stack();

visitList.add(first);

while(!visitList.isEmpty()) {

const node = visitList.remove();

if(node && !visited.has(node)) {

yield node;

visited.set(node);

node.getAdjacents().forEach(adj => visitList.add(adj));

}

}

}

We can test our graph as follow.

 

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

 

const graph = new Graph(Graph.UNDIRECTED);

const [first] = graph.addEdge(1, 2);

graph.addEdge(1, 3);

graph.addEdge(1, 4);

graph.addEdge(5, 2);

graph.addEdge(6, 3);

graph.addEdge(7, 3);

graph.addEdge(8, 4);

graph.addEdge(9, 5);

graph.addEdge(10, 6);

dfsFromFirst = graph.dfs(first);

visitedOrder = Array.from(dfsFromFirst);

const values = visitedOrder.map(node => node.value);

console.log(values); // [1, 4, 8, 3, 7, 6, 10, 2, 5, 9]

As you can see the graph is the same on BFS and DFS, however, the order how the nodes were visited is very different. BFS went from 1 to 10 in that order, while DFS went as deep as it could on each node.

Graph Time and Space Complexity

We have seen some of the basic operations of a Graph. How to add and remove vertices and edges. Here’s a summary of what we have covered so far:

 Adjacency ListAdjacency Matrix
SpaceO(|V| + |E|)O(|V|2)
addVertexO(1)O(|V|2)
removeVertexO(|V| + |E|)O(|V|2)
addEdgeO(1)O(1)
removeEdge (using Array)O(|E|)O(1)
removeEdge (using HashSet)O(1)O(1)
getAdjacentsO(|E|)O(|V|)
isAdjacent (using Array)O(|E|)O(1)
isAdjacent (using HashSet)O(1)O(1)

As you can see, an adjacency list is faster in almost all functions. The only that the adjacency matrix will outperform the adjacency list is checking if a node is adjacent to other, however, if we change our implementation from Array to a HashSet we can get it in constant time as well :)

Summary

As we saw, Graphs can help to model many real-life scenarios such as airports, social networks, internet and so on. We covered some of most basic algorithms such as Breadth-First Search (BFS) and Depth-First Search (DFS). Also, we talk about implementations trade-offs such as adjacency list and matrix. There are many other applications that we are going to cover in another post such as finding the shortest path between nodes and different exciting graph algorithms.

转载于:https://my.oschina.net/u/3134761/blog/1925426

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值