Data Structures - Lecture Notes On UNIT 3 Part 2
Data Structures - Lecture Notes On UNIT 3 Part 2
Trees
Binary Trees
Terminology
Representation
Tree Traversals
Graphs
Terminology
Representation
Graph Traversals
DFS and BFS
Trees
General View of a Tree
leaves
branches
root
Computer Scientist’s View
root
leaves
branches
nodes
Tree
A tree, is a finite set of nodes together with a finite set of directed
edges(links/branches) that define parent-child (Hierarchical )relationships.
Example:
Nodes = {A,B,C,D,E,F,G,H}
Edges = {(A,B),(A,E),(B,F),(B,G),(B,H),(E,C),(E,D)}
D C F H G
A tree satisfies the following properties:
1. It has one designated node, called the root, that has no parent.
2. Every node, except the root, has exactly one parent.
3. A node may have zero or more children.
4. There is a unique directed path from the root to each node.
5 5
5
1
3 2 3 2
3 2
4 1 6 4 6
4 1 6
tree Not a tree Not a tree
Tree Terminology
Root: Only node with no parent Example: A
Parent of x: The node directly above node x in the tree (A, B, C, H)
Child of x: A node directly below node x in the tree (B,C,D,E,F,G,H,I)
Siblings: Nodes with common parent. (B,C),(D,E),(F,G,H)
Non-leaf or Internal Node: Nonleaf node. (B,C,H)
Path: A sequence of connected nodes. (A,B,D), (A,C,H,I), ...
Ancestor of x: A node on the path from the root to x. For D (A,B)
Descendent of x: A node on a path from x to a leaf. For C (H,I)
Empty Tree: A tree with no nodes.
Leaf or External Node: A node with no children. (D,E,F,G,I)
A
B C
D E F G H
I
The level of a node x: It is the distance from the root to node x.
Generally, the root has a zero distance from itself, the root is at level 0.
The, children of the root are at level 1, their children are at level at 2,
and so on. Level of j: 3
Height of Tree: The maximum no of nodes covered in a path
starting from root node to a leaf node is called height of a tree.
Height of a following tree: 5
Depth: Length of the path to that node from the root. 3 for G
B C Level 1
D E F G Level 2
H I J Level 3
k Level 4
Example 2:
TERM DESCRIPTION EXAMPLE
Node An item or single element represented in a tree A,B,C…….,H
Root Node that does not have any ancestors (parent A
or Grandparent)
Sub tree Internal nodes in a tree which has both B,C,D
ancestor(parent) and descendant(child)
Leaf External nodes that does not have any E,F,G,H
descendant(child)
Edge The line depicts the connectivity between two (A-B),(A-C)…
nodes
Path Sequence of nodes connected A-B-E for E from root
Height Length of the longest path from the root 3
Depth Length of the path to that node from the root 2 for D
Degree of a Number of children connected from that node 3 for A, 1 for B,D, 2 for C
node and 0 for leaves
Degree of a Degree of a node which has maximum degree 3 (since A has Max. degree)
tree
Binary Tree
In a binary tree, each node has at most two sub trees.
A binary tree(T) is a finite set of nodes such that:
T is empty tree (called empty binary tree)
T contains a specially designed node called the root of T, and
remaining nodes of T form two disjoint binary trees T1 and T2 which
are called left sub tree and right sub tree respectively.
Note: A binary tree is a tree in which no nodes can have more than two children.
Binary Tree Properties
Trees
Binary tree
1 Level 0- 1node
2 3 Level 1- 2nodes
5 6 7 Level 2- 4nodes
4
10 12 13 14 15 Level 3-8nodes
8 9 11
Complete binary tree
A complete binary tree is a binary tree in which every level is completely
filled except possibly the last level.
In the unfilled level, the nodes are attached starting from the left-most position.
1 Level 0- 1node
2 3 Level 1- 2 nodes
4 5 6 7 Level 2- 4 nodes
8 9 Level 3- 2 nodes
Balanced Binary Tree
Balanced binary tree is a binary tree in which the left and right sub trees
height must be differed by at most 1.
4 5 6 7
Difference = 1
8 9
Left skewed binary tree
If the right subtree is missing in every node of tree then we call
it as left skewed tree.
A
B
C
Right skewed binary tree
If the left subtree is missing in every node of a tree then we
call it is right subtree. A
B
C
Binary Search Tree
A binary search tree is a nonempty binary tree that satisfies the following
properties:
Each node has a key/element (or value), and no two nodes have the
same key (i.e., all keys are distinct).
For every node x, all keys/elements in the left sub tree of x are smaller
than x.
For every node x, all keys in the right sub tree of x are larger than or
equal to x.
The left and right sub trees of the root are also binary search trees.
Fig (a) is not a BST where as Fig (b) and (c) are BST’s
Binary Search Tree Operations
1. Searching:
Search begins at the root.
If the root is NULL, the search tree is empty and the search fails.
If key is less than the root, then left subtree is searched.
If key is greater than the root, then right subtree is searched.
If key equals the root, then the search terminates successfully.
20
Search for 8
10 40
6 15 30
2 8 25
Binary Search Tree Operations
2.Insertion:
To insert a new element into a binary search tree, we must first verify
that its key does not already exist by performing a search in the tree.
If the search is successful, we do not insert.
If the search is unsuccessful, then the element is inserted at the point
the search terminated.
Insert 35
20
10 40
6 15 30
2 8 25 35
Binary Search Tree Operations
3.Deletion:
There are three cases for the element to be deleted:
1. Element is in a leaf.
2. Element is in a degree 1 node (i.e., has exactly one nonempty subtree).
3. Element is in a degree 2 node (i.e., has exactly two nonempty subtrees).
20
10 40
6 15 30
2 8 18 25 35
7
Case 2: Delete from a Degree 1 Node 20
Delete 40 10 40
6 15 30
2 8 18 25
20
Delete 15
10
6 15 30
2 8 18 25
Case 3: Delete from a Degree 2 Node 20
10 40
6 15 30
2 8 18 25 35
7
Replace with the largest key in the left subtree (or the smallest in the right
subtree)
20
8 40
6 15 30
2 8 18 25 35
7
Representation of a Binary Tree using Array
Sequential Representation :
Tree nodes are stored in a linear data structure like array.
Root node is stored at index ‘0’
If a node is at a location ‘i’, then its left child is located at 2 * i + 1
and right child is located at 2 * i + 2
1 2
B D
3
5 G 6
C E
F 12
A B D C . E G . . . . . F
0 1 2 3 4 5 6 7 8 9 10 11 12 13 14
Advantages of array/sequential/static representation
Any node can be accessed from any other node by calculating the index
and this is efficient from execution point of view.
Inserting a new node and deleting a node from it are inefficient with this
representation because these require considerable data movement up and
down the array which demand excessive processing time.
Representation of Binary Tree using Linked List
Each element is represented by a node that has two link fields (leftChild
and rightChild) plus an element field .
29
Advantages of linked representation
This representation is superior to the array representation as there is no
wastage of memory.
Insertion and deletion which are the most common operations can be done
without moving the other nodes.
It needs additional space in each node for storing the left and right subtrees.
Binary Tree Traversal Techniques
B C
D E F G
H J
I
Preorder: A B D E H I C F J K G
Inorder of binary tree
B C
D E F G
H J
I
Inorder: D B H E I A F K J C G
Postorder of binary tree
B C
D E F G
H J
I
K
Postorder: D H I E B K J F G C A
Write pre,in and post order of the following tree:
(A-B) + C* (D/E) +
- *
A B C /
D E
Preorder for the following tree
- *
A B C /
D E
Preorder: + - A B * C / D E
Inorder of the following tree
- *
A B C /
D E
Inorder: A - B + C * D / E
Postorder of the following tree
- *
A B C /
D E
Postorder: A B - C D E / * +
/* Write a C program that uses functions to perform the following:
i) Creating a Binary Tree of integers.
ii) Traversing the above binary tree in preorder, inorder and postorder.*/
Example: a b
d e
V= {a,b,c,d,e}
E=(a,b), (a,c), (a,d), (b,e), (c,d), (c,e), (d,e)}
Graph Terminology
If two nodes are connected by an edge, they are neighbors (and the nodes
are adjacent to each other).
A path is a sequence of nodes such that each node (but the last) is the
predecessor of the next node in the list.
Example: If v1,v2,. . .,vk are vertices then vi and vi+1 should be consecutive.
The degree of a node is the number of edges it has.
A cycle in G is a simple path in which the first and last vertices are the
same.
A graph is termed as weighted graph if all the edges in it are labeled with
some weights.
if edges ordered pairs (u,v) if edges unordered pairs {u,v}
u v u v
3 G2 0 in:1, out: 1
G1
0
3 1 2 3 1 in: 1, out: 2
3 3
2 in: 1, out: 0
Cyclic graph Acyclic graph Weighted Graph
A A
B C B C
D D
A B A
D B
C D
C
E
0 0 0 1 2 0
1 2 1 2 3 1 2
3 3
G1
(i) ii) (iii) (iv)
0
0 0 0
1 1 1
2 2
G2 (i) (ii) (iii)
Adjacency Matrix
A
A B C D E
A 0 1 1 1 0
B C
B 1 0 1 1 0
C 1 1 0 1 1
D E D 1 1 1 0 1
E 0 0 1 1 0
Linked List Representation
The header node in each list maintains a list of all adjacent vertices of a
node .
A B C D NULL
D NULL
A
B A C
D E NULL B C
C A B
D A B C E NULL D E
N E C D NULL
Undirected Graph Adjacency List Adjacency Matrix
Directed Graph Adjacency List Adjacency Matrix
Graph Traversal Techniques
There are two standard graph traversal techniques:
Depth-First Search (DFS)
Breadth-First Search (BFS)
Traversing a graph means visiting all the vertices in the graph exactly once.
DFS and BFS traversals result an acyclic graph.
DFS and BFS traversal on the same graph do not give the same order of visit
of vertices.
Depth First Traversal:
The depth first traversal is similar to the in-order traversal of a binary tree.
An initial or source vertex is identified to start traversing, then from that vertex
any one vertex which is adjacent to the current vertex is traversed.
All the nodes at any level, i, are visited before visiting the nodes at level i + 1.
B C D
B C D
A
E
B C D
The Depth First Search Tree Order : A, B, E, D, C
A B C A B C
D E F D E F
G H I G H I
DFS Traversal Order BFS Traversal Order
A B C F E G D H I A B D E C G F H I
Example3: Construct the DFS and BFS for the following graph.
Note: From the above diagram it is possible to say that G and E are never traversed.
Breadth First Search: The BFS Tree Order : A,B,F,C,D
Note: From the above diagram it is possible to say that G and E are never traversed.
Applications of Graphs
Electronic circuits
Printed circuit board
Integrated circuit
Transportation networks
Highway network
Flight network
Computer networks
Local area network
Internet
Web
Databases
Entity-relationship diagram
Spanning Trees
A spanning tree of a graph is just a sub graph that contains all the vertices and
is a tree.
A graph may have many spanning trees.
o o o
r r r
Minimum Spanning Trees
The minimum spanning tree for a given graph is the spanning tree of
minimum cost for that graph.
2 2
5 3 3
4
1 1