ECE 2103 Data Structure & Algorithm Date: 19/01/2025
Tree - Terminology
In linear data structure data is organized in sequential order and in non-linear data structure data is
organized in random order. A tree is a very popular non-linear data structure used in a wide range of
applications. A tree data structure can be defined as follows...
Tree is a non-linear data structure which organizes data in hierarchical structure, and this is a
recursive definition.
A tree data structure can also be defined as follows...
Tree data structure is a collection of data (Node) which is organized in hierarchical structure
recursively
In tree data structure, every individual element is called as Node. Node in a tree data structure stores the
actual data of that particular element and link to next element in hierarchical structure.
In a tree data structure, if we have N number of nodes then we can have a maximum of N-1 number of links.
Page 1 of 15
ECE 2103 Data Structure & Algorithm Date: 19/01/2025
Example
Page 2 of 15
ECE 2103 Data Structure & Algorithm Date: 19/01/2025
Terminology
In a tree data structure, we use the following terminology...
1. Root
In a tree data structure, the first node is called as Root Node. Every tree must have a root node. We can say
that the root node is the origin of the tree data structure. In any tree, there must be only one root node. We
never have multiple root nodes in a tree.
Page 3 of 15
ECE 2103 Data Structure & Algorithm Date: 19/01/2025
2. Edge
In a tree data structure, the connecting link between any two nodes is called EDGE. In a tree with 'N' number
of nodes there will be a maximum of 'N-1' number of edges.
Page 4 of 15
ECE 2103 Data Structure & Algorithm Date: 19/01/2025
3. Parent / Ancestor / Predecessor
In a tree data structure, the node which is a predecessor of any node is called PARENT NODE. In simple
words, the node which has a branch from it to any other node is called a parent node. Parent node can also
be defined as "The node which has child / children".
Page 5 of 15
ECE 2103 Data Structure & Algorithm Date: 19/01/2025
4. Child / Successor / Descendant
In a tree data structure, the node which is descendant of any node is called as CHILD Node. In simple words,
the node which has a link from its parent node is called as child node. In a tree, any parent node can have
any number of child nodes. In a tree, all the nodes except root are child nodes.
Page 6 of 15
ECE 2103 Data Structure & Algorithm Date: 19/01/2025
5. Siblings
In a tree data structure, nodes which belong to same Parent are called as SIBLINGS. In simple words, the
nodes with the same parent are called Sibling nodes.
Page 7 of 15
ECE 2103 Data Structure & Algorithm Date: 19/01/2025
6. Leaf / External Node
In a tree data structure, the node which does not have a child is called LEAF Node. In simple words, a leaf is
a node with no child.
In a tree data structure, the leaf nodes are also called External Nodes. External node is also a node with no
child. In a tree, leaf node is also called as 'Terminal' node.
Page 8 of 15
ECE 2103 Data Structure & Algorithm Date: 19/01/2025
7. Internal Nodes
In a tree data structure, the node which has at least one child is called as INTERNAL Node. In simple words,
an internal node is a node with at least one child.
In a tree data structure, nodes other than leaf nodes are called Internal Nodes. The root node is also said
to be Internal Node if the tree has more than one node. Internal nodes are also called 'Non-Terminal'
nodes.
Page 9 of 15
ECE 2103 Data Structure & Algorithm Date: 19/01/2025
8. Degree
In a tree data structure, the total number of children of a node is called DEGREE of that Node. In simple
words, the Degree of a node is total number of children it has. The highest degree of a node among all the
nodes in a tree is called 'Degree of Tree'
Page 10 of 15
ECE 2103 Data Structure & Algorithm Date: 19/01/2025
9. Level
In a tree data structure, the root node is said to be at Level 0 and the children of root node are at Level 1 and
the children of the nodes which are at Level 1 will be at Level 2 and so on... In simple words, in a tree each
step from top to bottom is called a Level and the Level count starts with '0' and is incremented by one at
each level (Step).
Page 11 of 15
ECE 2103 Data Structure & Algorithm Date: 19/01/2025
10. Height
In a tree data structure, the total number of edges from leaf node to a particular node in the longest path is
called as HEIGHT of that Node. In a tree, the height of the root node is said to be the height of the tree. In
a tree, the height of all leaf nodes is '0'.
Page 12 of 15
ECE 2103 Data Structure & Algorithm Date: 19/01/2025
11. Depth
In a tree data structure, the total number of edges from root node to a particular node is called as DEPTH of
that Node. In a tree, the total number of edges from root node to a leaf node in the longest path is said to
be Depth of the tree. In simple words, the highest depth of any leaf node in a tree is said to be the depth
of that tree. In a tree, the depth of the root node is '0'.
Page 13 of 15
ECE 2103 Data Structure & Algorithm Date: 19/01/2025
12. Path
In a tree data structure, the sequence of Nodes and Edges from one node to another node is called
as PATH between that two Nodes. Length of a Path is total number of nodes in that path. In below
example the path A - B - E - J has length 4.
Page 14 of 15
ECE 2103 Data Structure & Algorithm Date: 19/01/2025
13. Sub Tree
In a tree data structure, each child from a node forms a subtree recursively. Every child node will form a
subtree on its parent node.
Page 15 of 15