0% found this document useful (0 votes)
24 views

Graphs Notes

Graphs are a data structure for representing relationships between objects. They consist of nodes connected by edges. Unlike trees, graphs allow nodes to have multiple parents. Edges in graphs can also have weights. Graphs can be represented using an adjacency matrix (2D array) or adjacency list. Common graph algorithms like breadth-first search (BFS) and depth-first search (DFS) are used to traverse graphs. BFS visits nodes level-by-level while DFS prioritizes going deeper first before branching out. Both use queues and stacks respectively.

Uploaded by

Santhosh Chanty
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
24 views

Graphs Notes

Graphs are a data structure for representing relationships between objects. They consist of nodes connected by edges. Unlike trees, graphs allow nodes to have multiple parents. Edges in graphs can also have weights. Graphs can be represented using an adjacency matrix (2D array) or adjacency list. Common graph algorithms like breadth-first search (BFS) and depth-first search (DFS) are used to traverse graphs. BFS visits nodes level-by-level while DFS prioritizes going deeper first before branching out. Both use queues and stacks respectively.

Uploaded by

Santhosh Chanty
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 6

What is a Graph?

Graphs are one of the most interesting data structures in computer science. Graphs and
the trees are somewhat similar by their structure. In fact, tree is derived from the graph
data structure. However there are two important differences between trees and
graphs.

1. Unlike trees, in graphs, a node can have many parents.


2. The link between the nodes may have values or weights.

Graphs are good in modeling real world problems like representing cities which are
connected by roads and finding the paths between cities, modeling air traffic controller
system, etc. These kinds of problems are hard to represent using simple tree structures.
The following example shows a very simple graph:

In the above graph, A,B,C,D,E,F are called nodes and the connecting lines between these
nodes are called edges. The edges can be directed edges which are shown by arrows;
they can also be weighted edges in which some numbers are assigned to them. Hence, a
graph can be a directed/undirected and weighted/un-weighted graph. In this article, we
will discuss undirected and un-weighted graphs.

1
Graph Representation in Programming Language

Every graph has two components, Nodes and Edges. Let’s see how these two
components are implemented in a programming language like JAVA.

1. Nodes

Nodes are implemented by class, structures or as Link-List nodes. As an example in


JAVA, we will represent node for the above graph as follows:

//
Class Node
{
Char data;
Public Node(char c)
{
this.data=c;
}
}
//

2. Edges

Edges represent the connection between nodes. There are two ways to represent
edges.

Adjacency Matrix

It is a two dimensional array with Boolean flags. As an example, we can represent the
edges for the above graph using the following adjacency matrix.

2
In the given graph, A is connected with B, C and D nodes, so adjacency matrix will have
1s in the ‘A’ row for the ‘B’, ‘C’ and ‘D’ column.

The advantages of representing the edges using adjacency matrix are:

1. Simplicity in implementation as you need a 2-dimensional array


2. Creating edges/removing edges is also easy as you need to update the Booleans

The drawbacks of using the adjacency matrix are:

1. Increased memory as you need to declare N*N matrix where N is the total number of
nodes.
2. Redundancy of information, i.e. to represent an edge between A to B and B to A, it
requires to set two Boolean flag in an adjacency matrix.

In JAVA, we can represent the adjacency matrix as a 2 dimensional array of


integers/Booleans.

Adjacency List

It is an array of linked list nodes. In other words, it is like a list whose elements are a
linked list. For the given graph example, the edges will be represented by the below
adjacency list:

Graph Traversal
The breadths first search (BFS) and the depth first search (DFS) is the two algorithms
used for traversing and searching a node in a graph. They can also be used to find out
whether a node is reachable from a given node or not.

3
Depth First Search (DFS)

The aim of DFS algorithm is to traverse the graph in such a way that it tries to go far
from the root node. Stack is used in the implementation of the depth first search. Let’s
see how depth first search works with respect to the following graph:

As stated before, in DFS, nodes are visited by going through the depth of the tree from
the starting node. If we do the depth first traversal of the above graph and print the
visited node, it will be “A B E F C D”. DFS visits the root node and then its children nodes
until it reaches the end node, i.e. E and F nodes, then moves up to the parent nodes.

Algorithmic Steps

1. Step 1: Push the root node in the Stack.


2. Step 2: Loop until stack is empty.
3. Step 3: Peek the node of the stack.
4. Step 4: If the node has unvisited child nodes, get the unvisited child node, mark it as
traversed and push it on stack.
5. Step 5: If the node does not have any unvisited child nodes, pop the node from the
stack.

Based upon the above steps, the following Java code shows the implementation of the
DFS algorithm:

//

public void dfs()


{
//DFS uses Stack data structure
Stack s=new Stack();
s.push(this.rootNode);

4
rootNode.visited=true;
printNode(rootNode);
while(!s.isEmpty())
{
Node n=(Node)s.peek();
Node child=getUnvisitedChildNode(n);
if(child!=null)
{
child.visited=true;
printNode(child);
s.push(child);
}
else
{
s.pop();
}
}
//Clear visited property of nodes
clearNodes();
}

//

Breadth First Search (BFS)

This is a very different approach for traversing the graph nodes. The aim of BFS
algorithm is to traverse the graph as close as possible to the root node. Queue is used in
the implementation of the breadth first search. Let’s see how BFS traversal works with
respect to the following graph:

5
If we do the breadth first traversal of the above graph and print the visited node as the
output, it will print the following output. “A B C D E F”. The BFS visits the nodes level by
level, so it will start with level 0 which is the root node, and then it moves to the next
levels which are B, C and D, then the last levels which are E and F.

Algorithmic Steps

1. Step 1: Push the root node in the Queue.


2. Step 2: Loop until the queue is empty.
3. Step 3: Remove the node from the Queue.
4. Step 4: If the removed node has unvisited child nodes, mark them as visited and insert
the unvisited children in the queue.

Based upon the above steps, the following Java code shows the implementation of the
BFS algorithm:

//
public void bfs()
{
//BFS uses Queue data structure
Queue q=new LinkedList();
q.add(this.rootNode);
printNode(this.rootNode);
rootNode.visited=true;
while(!q.isEmpty())
{
Node n=(Node)q.remove();
Node child=null;
while((child=getUnvisitedChildNode(n))!=null)
{
child.visited=true;
printNode(child);
q.add(child);
}
}
//Clear visited property of nodes
clearNodes();
}
//

You might also like