Chapter Five - Trees
Chapter Five - Trees
Chapter Five - Trees
Trees
Tree
• A tree is also one of the data
structures that represent
hierarchical data.
• Suppose we want to show the
employees and their positions in
the hierarchical form then it can
be represented as shown below:
•
Some key points of the Tree data structure
1. A tree data structure is defined as a collection of objects or entities
known as nodes that are linked together to represent or simulate
hierarchy.
2. A tree data structure is a non-linear data structure because it does not
store in a sequential manner. It is a hierarchical structure as elements in
a Tree are arranged in multiple levels.
3. In the Tree data structure, the topmost node is known as a root node.
Each node contains some data, and data can be of any type. In the
above tree structure, the node contains the name of the employee, so
the type of data would be a string.
4. Each node contains some data and the link or reference of other nodes
that can be called children.
Some basic terms used in Tree data structure
• Root: The root node is the topmost node in the tree
hierarchy. In other words, the root node is the one
that doesn't have any parent. In the above structure,
node numbered 1 is the root node of the tree. If a
node is directly linked to some other node, it would be
called a parent-child relationship.
• Child node: If the node is a descendant of any node,
then the node is known as a child node.
• Parent: If the node contains any sub-node, then that
node is said to be the parent of that sub-node.
• Sibling: The nodes that have the same parent are
known as siblings.
Some basic terms used in Tree data structure
• Leaf Node:- The node of the tree, which doesn't have
any child node, is called a leaf node. A leaf node is the
bottom-most node of the tree. There can be any
number of leaf nodes present in a general tree. Leaf
nodes can also be called external nodes.
• Internal nodes: A node has atleast one child node
known as an internal
• Ancestor node:- An ancestor of a node is any
predecessor node on a path from the root to that
node. The root node doesn't have any ancestors. In
the tree shown in the above image, nodes 1, 2, and 5
are the ancestors of node 10.
• Descendant: The immediate successor of the given
node is known as a descendant of a node. In the above
figure, 10 is the descendant of node 5.
Properties of Tree data structure
• Number of edges: If there are n nodes, then there would n-1 edges. Each arrow
in the structure represents the link or path. Each node, except the root node, will
have atleast one incoming link known as an edge. There would be one link for the
parent-child relationship.
• Depth of node x: The depth of node x can be defined as the length of the path
from the root to the node x. One edge contributes one-unit length in the path.
So, the depth of node x can also be defined as the number of edges between the
root node and the node x. The root node has 0 depth.
• Height of node x: The height of node x can be defined as the longest path from
the node x to the leaf node.
Implementation of Tree
• The tree data structure can be created
by creating the nodes dynamically
with the help of the pointers.
• The tree in the memory can be
represented a
• The node contains three fields.
• The second field stores the data;
• the first field stores the address of the
left child, and
• the third field stores the address of the
right childs in the figure.
Implementation of Tree
• In programming, the structure of a node can be
defined as shown in the figure.
• The above structure can only be defined for the
binary trees because the binary tree can have utmost
two children, and generic trees can have more than
two children.
• The structure of the node for generic trees would be
different as compared to the binary tree.
•
Applications of trees
• Storing naturally hierarchical data: Trees are used to store the data in the
hierarchical structure. For example, the file system. The file system stored on
the disc drive, the file and folder are in the form of the naturally hierarchical
data and stored in the form of trees.
• Organize data: It is used to organize data for efficient insertion, deletion and
searching. For example, a binary tree has a logN time for searching an
element.
• Trie: It is a special kind of tree that is used to store the dictionary. It is a fast
and efficient way for dynamic spell checking.
• Heap: It is also a tree data structure implemented using arrays. It is used to
implement priority queues.
• B-Tree and B+Tree: B-Tree and B+Tree are the tree data structures used to
implement indexing in databases.
• Routing table: The tree data structure is also used to store the data in routing
tables in the routers.
Types of Tree data structure
General tree
• The general tree is one of the types of tree data
structure. In the general tree, a node can have
either 0 or maximum n number of nodes.
• There is no restriction imposed on the degree of
the node (the number of nodes that a node can
contain).
• The topmost node in a general tree is known as
a root node.
• The children of the parent node are known
as subtrees.
• Every non-empty tree has a downward edge,
and these edges are connected to the nodes
known as child nodes.
• The root node is labeled with level 0. The nodes
that have the same parent are known
as siblings.
Types of Tree data structure
Binary tree
• Here, binary name itself suggests two
numbers, i.e., 0 and 1.
• In a binary tree, each node in a tree can have
utmost two child nodes.
• Here, utmost means whether the node has 0
nodes, 1 node or 2 nodes.
Types of Tree data structure (cont …)