SlideShare a Scribd company logo
1 of 57
TREES
TAHSIN AZIZ
COMPUTER SCIENCE AND ENGINEERING
AHSANULLAH UNIVERSITY OF SCIENCE AND TECHNOLOGY
REFERENCE BOOK
DISCRETE MATHEMATICS AND ITS APPLICATIONS
BY KENNETH H. ROSEN
2Tahsin Aziz
TREE
• A tree is a connected undirected graph with no simple circuits.
• A tree cannot contain multiple edges or loops. Therefore any tree must be a simple
graph.
• Trees are often defined as undirected graphs with the property that there is a unique
simple path between every pair of vertices.
Tahsin Aziz 3
TREE
a
b c
f h
lk
g
i j
ed
Tahsin Aziz 4
TREE
• A tree is a digraph with a non empty set of nodes such that-
• There is exactly one node called the root of the tree which has in-degree zero.
• Every node other than the root has in-degree one.
• For every node a of the tree, there is a directed path from the root to a.
Tahsin Aziz 5
TREE
a
b c
f h
lk
g
i j
ed
Tahsin Aziz 6
TREE
• It is not tree as there are two nodes with degree zero.
• This is also not tree as there one node has in-degree two.
Tahsin Aziz 7
TREE
• It is not tree as there is no node with in-degree 0.
Tahsin Aziz 8
FOREST
• A connected graph that contains no simple circuits that are not necessarily connected is
called forests.
• Forests have the property that each of their connected components is a tree.
Tahsin Aziz 9
FOREST
Tahsin Aziz 10
THEOREM-1
• An undirected graph is a tree if and only if there is a unique simple path between any two of its vertices.
• First assume that T is a tree. Then T is a connected graph with no simple circuits.
• Let x and y be two vertices of T. Because T is connected, there is a simple path between x and y. Moreover, this
path must be unique, for if there were a second such path, the path formed by combining the first path from x to
y followed by the path from y to x obtained by reversing the order of the second path from x to y would form a
circuit. This implies that there is a simple circuit in T. Hence, there is a unique simple path between any two
vertices of a tree.
• Now assume that there is a unique simple path between any two vertices of a graph T. Then T is connected,
because there is a path between any two of its vertices. Furthermore, T can have no simple circuits. To see that
this is true, suppose T had a simple circuit that contained the vertices x and y. Then there would be two simple
paths between x and y, because the simple circuit is made up of a simple path from x to y and a second simple
path from y to x.
• Hence, a graph with a unique simple path between any two vertices is a tree.
Tahsin Aziz 11
ROOTED TREE
• A rooted tree is a tree in which one vertex has been designated as the root and every
edge is directed away from the root.
• Here vertex a is the root of the tree.
a
b c
f hged
Tahsin Aziz 12
PARENT
• Suppose that T is a rooted tree. If v is a vertex in T other than the root, the parent of v is
the unique vertex u such that there is a directed edge from u to v.
• Here vertex b is the parent of vertex d and vertex e.
a
b c
f hged
Tahsin Aziz 13
CHILD
• Suppose that T is a rooted tree. When u is the parent of v, v is called a child of u.
• Here vertex d is the child of vertex b.
a
b c
f hged
Tahsin Aziz 14
SIBLINGS
• Suppose that T is a rooted tree. Vertices with the same parent are called siblings
• Here vertex d and vertex b are siblings as both of their parent is vertex b.
a
b c
f hged
Tahsin Aziz 15
ANCESTORS
• Suppose that T is a rooted tree. The ancestors of a vertex other than the root are the
vertices in the path from the root to this vertex, excluding the vertex itself and including
the root.
• Here ancestors of a vertex i are h, c and a.
a
b c
f hg
i j
ed
Tahsin Aziz 16
DESCENDANTS
• Suppose that T is a rooted tree. The descendants of a vertex v are those vertices that
have v as an ancestor.
• Here descendants of a vertex c are f, g, h, i and j.
a
b c
f hg
i j
ed
Tahsin Aziz 17
LEAF OR TERMINAL VERTEX
• Suppose that T is a rooted tree. A vertex of a rooted tree is called a leaf if it has no children.
• A vertex of degree one in a tree is called a leaf or terminal vertex.
• Here d, e, f, g, i and j are leaves.
a
b c
f hg
i j
ed
Tahsin Aziz 18
INTERNAL VERTICES
• Suppose that T is a rooted tree. Vertices that have children are called internal vertices.
• The root is an internal vertex unless it is the only vertex in the graph, in which case it is
a leaf.
• Here a, b, c and h are internal vertices.
a
b c
f h
g
i j
ed
Tahsin Aziz 19
SUBTREE
• Suppose that T is a rooted tree. If a is a vertex in a tree, the subtree with a as its root is
the subgraph of the tree consisting of a and its descendants and all edges incident to
these descendants.
a
b c
f h
g
i j
ed
Tahsin Aziz 20
SUBTREE
• The subtree rooted as c of the given tree is
c
f hg
i j
Tahsin Aziz 21
DEFINITIONS
• Interval vertex or branch vertex
• A vertex of degree greater than one in a tree is called an interval vertex or a branch vertex.
• Trival tree
• A graph consisting of a single vertex.
Tahsin Aziz 22
M-ARY TREE
• A rooted tree is called an m-ary tree if every internal vertex has no more than m
children.
• The tree is called a full m-ary tree if every internal vertex has exactly m children.
• An m-ary tree with m = 2 is called a binary tree.
Tahsin Aziz 23
M-ARY TREE
a
b
ed
gf
c
a
b c
fe
d
A full binary tree A m-ary tree
Tahsin Aziz 24
BINARY TREE
• Each node may have two, one or zero child.
• No node will have more than two child.
• This type of tree is known as binary tree.
a
b
f
ed
c
Tahsin Aziz 25
COMPLETE BINARY TREE
• Each node may have two or zero child.
• This type of tree is known as complete binary tree.
a
b
f ed
c
d
Tahsin Aziz 26
COMPLETE M-ARY TREE
• Each node may have m or zero child.
• This type of tree is known as complete binary tree.
a
b
ed
c… … … …
… … … …
0 m
0 m
Tahsin Aziz 27
TERNARY TREE
• It may have three, two, one or zero child.
• No node will have more than three child.
• This type of tree is called ternary tree.
a
b
h
ge
dc
f
i
kj
Tahsin Aziz 28
ORDERED ROOTED TREE
• An ordered rooted tree is a rooted tree where the children of each internal vertex are ordered.
• Ordered rooted trees are drawn so that the children of each internal vertex are shown in order from left
to right.
• A representation of a rooted tree in the conventional way determines an ordering for its edges.
• For some applications every vertex of a binary tree, other than the root, is designated as a right or a left
child of its parent.
• This is done even when some vertices have only one child.
• Ordered rooted trees can be defined recursively.
• Binary trees, a type of ordered rooted trees.
Tahsin Aziz 29
LEFT CHILD
• In an ordered binary tree, if an internal vertex has two children, the first child is called
the left child.
• The tree rooted at the left child of a vertex is called the left subtree of this vertex.
Tahsin Aziz 30
LEFT CHILD
a
b
ed
gf
c
d
c
Left subtree of the vertex C
Tahsin Aziz 31
RIGHT CHILD
• In an ordered binary tree, if an internal vertex has two children, the second child is
called the right child.
• The tree rooted at the right child of a vertex is called the right subtree of the vertex.
Tahsin Aziz 32
RIGHT CHILD
a
b
ed
gf
c
Right subtree of the vertex C
e
gf
c
Tahsin Aziz 33
TREES AS MODELS
• Saturated hydrocarbons and trees
• Representing organizations
• Computer file systems
• Tree-connected parallel processors
Tahsin Aziz 34
THEOREM-2
• A tree with n vertices has n − 1 edges.
• Proof:
• Basis Step: When n = 1, a tree with n = 1 vertex has no edges. It follows that the theorem is true for n = 1.
• Inductive Hypothesis: The inductive hypothesis states that every tree with k vertices has k − 1 edges, where k is
a positive integer.
• Inductive Step:
• Suppose that a tree T has k + 1 vertices and that v is a leaf of T which must exist because the tree is finite and let w
be the parent of v.
• Removing from T the vertex v and the edge connecting w to v produces a tree T’ with k vertices, because the
resulting graph is still connected and has no simple circuits.
• By the inductive hypothesis, T’ has k − 1 edges. It follows that T has k edges because it has one more edge than T’ ,
the edge connecting v and w. This completes the inductive step.
Tahsin Aziz 35
THEOREM-3
• A full m-ary tree with i internal vertices contains n = mi + 1 vertices.
• Proof:
• Suppose that T is a full m-ary tree. Let i be the number of internal vertices in this tree.
• Every vertex, except the root, is the child of an internal vertex.
• Because each of the i internal vertices has m children, there are mi vertices in the tree other
than the root. Therefore, the tree contains n = mi + 1 vertices.
Tahsin Aziz 36
THEOREM-4
• A full m-ary tree with
i. n vertices has i = (n − 1)/m internal vertices and l = [(m − 1)n + 1]/m leaves.
ii. i internal vertices has n = mi + 1 vertices and l = (m − 1)i + 1 leaves
iii. l leaves has n = (ml − 1)/(m − 1) vertices and i = (l − 1)/(m − 1) internal vertices.
• Proof of (i):
• Let n represent the number of vertices, i the number of internal vertices, and l the number of leaves.
• We know, A full m-ary tree with i internal vertices contains n = mi + 1 vertices which implies i =
𝑛−1
𝑚
• Moreover, each vertex is either a leaf or an internal vertex. So we can write n = l + i
• Putting the value of i in the equation we can obtain, n = l +
𝑛−1
𝑚
which implies l = n -
𝑛−1
𝑚
=
𝑛𝑚−𝑛+1
𝑚
=
𝑚−1 𝑛+1
𝑚
Tahsin Aziz 37
THEOREM-4
• A full m-ary tree with
i. n vertices has i = (n − 1)/m internal vertices and l = [(m − 1)n + 1]/m leaves.
ii. i internal vertices has n = mi + 1 vertices and l = (m − 1)i + 1 leaves
iii. l leaves has n = (ml − 1)/(m − 1) vertices and i = (l − 1)/(m − 1) internal vertices.
• Proof of (ii):
• Let n represent the number of vertices, i the number of internal vertices, and l the number of leaves.
• Every vertex, except the root, is the child of an internal vertex. Because each of the i internal vertices has m
children, there are mi vertices in the tree other than the root. Therefore, the tree contains n = mi + 1 vertices.
• Moreover, each vertex is either a leaf or an internal vertex. So we can write n = l + i which implies l = n – i.
• Putting the value of n in the equation we can obtain, l = mi + 1 – i which implies l = (m - 1)i + 1.
Tahsin Aziz 38
THEOREM-4
• A full m-ary tree with
i. n vertices has i = (n − 1)/m internal vertices and l = [(m − 1)n + 1]/m leaves.
ii. i internal vertices has n = mi + 1 vertices and l = (m − 1)i + 1 leaves
iii. l leaves has n = (ml − 1)/(m − 1) vertices and i = (l − 1)/(m − 1) internal vertices.
• Proof of (iii):
• Let n represent the number of vertices, i the number of internal vertices, and l the number of leaves.
• We know, A full m-ary tree with i internal vertices contains n = mi + 1 vertices which implies i =
𝑛−1
𝑚
• Moreover, each vertex is either a leaf or an internal vertex. So we can write n = l + i which implies l = n – i.
• Putting the value of n in the equation we can obtain, l = mi + 1 – i which implies l = (m - 1)i + 1.
• Again if we put the value of i in the equation we can write, l = (m - 1) ×
𝑛−1
𝑚
+ 1 which implies n =
𝑚𝑙−1
𝑚−1
.
• Putting the value of n in l = n – i we can obtain i = (l − 1)/(m − 1).
Tahsin Aziz 39
EXAMPLE
• Suppose that someone starts a chain letter. Each person who receives the letter is asked to send it on to
four other people. Some people do this, but others do not send any letters. How many people have seen
the letter, including the first person, if no one receives more than one letter and if the chain letter ends
after there have been 100 people who read it but did not send it out? How many people sent out the
letter?
• Solution
• The chain letter can be represented using a 4-ary tree. The internal vertices correspond to people who sent out
the letter, and the leaves correspond to people who did not send it out. Because 100 people did not send out the
letter, the number of leaves in this rooted tree is l = 100. Hence, we know n =
𝑚𝑙−1
𝑚−1
• So the number of people who have seen the letter is n =
4 ×100−1
4−1
= 133.
• We know, n = l + i which implies i = n – l. So, the number of people sent out the letter is 133 − 100 = 33.
Tahsin Aziz 40
BALANCED M-ARY TREE
• It is often desirable to use rooted trees that are “balanced” so that the subtrees at each
vertex contain paths of approximately the same length.
• The level of a vertex v in a rooted tree is the length of the unique path from the root to
this vertex. The level of the root is defined to be zero.
• The height of a rooted tree is the maximum of the levels of vertices.
• A rooted m-ary tree of height h is balanced if all leaves are at levels h or h − 1.
Tahsin Aziz 41
HEIGHT OF A TREE
• The height of the tree is the length of the longest path to a leaf from the root.
Level 0
Level 1
Level 2
Level 3
Level 4
Tahsin Aziz 42
THEOREM-5
• There are at most mh leaves in an m-ary tree of height h.
• Proof:
• Basis Step: First, consider m-ary trees of height 1. These trees consist of a root with no more than m
children, each of which is a leaf. Hence, there are no more than m1 = m leaves in an m-ary tree of
height 1.
• Inductive Hypothesis: Now assume that the result is true for all m-ary trees of height less than h.
• Induction Step: Let T be an m-ary tree of height h. The leaves of T are the leaves of the subtrees of T
obtained by deleting the edges from the root to each of the vertices at level 1. Each of these subtrees
has height less than or equal to h − 1. So by the inductive hypothesis, each of these rooted trees has
at most mh−1 leaves. Because there are at most m such subtrees, each with a maximum of mh−1
leaves, there are at most m × mh − 1 = mh leaves in the rooted tree.
Tahsin Aziz 43
APPLICATIONS OF TREES
• Binary search trees
• Decision trees
• Prefix codes
• Game trees
Tahsin Aziz 44
TREE TRAVERSAL
• Procedures for systematically visiting every vertex of an ordered rooted tree are called
traversal algorithms.
• We will describe three of the most commonly used such algorithms:
• Pre-order traversal
• In-order traversal
• Post-order traversal.
• Each of these algorithms can be defined recursively.
Tahsin Aziz 45
PRE-ORDER TRAVERSAL
• Let T be an ordered rooted tree with root r.
• If T consists only of r, then r is the pre-order traversal of T .
• Otherwise, suppose that T1, T2,...,Tn are the subtrees at r from left to right in T.
• The pre-order traversal begins by visiting r. It continues by traversing T1 in pre-order, then T2 in pre-
order, and so on, until Tn is traversed in pre-order.
• So we can summarize as
• Visit the root.
• Traverse left-subtree in pre-order.
• Traverse right-subtree in pre-order.
• Root – left – right.
cb
a
a – b – cTahsin Aziz 46
PRE-ORDER TRAVERSAL
• The pre-order traversal of the tree is:a
cb
d e
h
gf
a - b - d - e - c - f - g - h
Tahsin Aziz 47
IN-ORDER TRAVERSAL
• Let T be an ordered rooted tree with root r.
• If T consists only of r, then r is the in-order traversal of T .
• Otherwise, suppose that T1, T2,...,Tn are the subtrees at r from left to right.
• The in-order traversal begins by traversing T1 in in-order, then visiting r. It continues by traversing T2 in
in-order, then T3 in in-order,..., And finally Tn in in-order.
• So we can summarize as
• Traverse left-subtree in in-order.
• Visit the root.
• Traverse right-subtree in in-order.
• Left – root – right.
a
cb
b – a – cTahsin Aziz 48
IN-ORDER TRAVERSAL
• The in-order traversal of the tree is:a
cb
d e
h
gf
d - b - e - a - f - c - h - g
Tahsin Aziz 49
POST-ORDER TRAVERSAL
• Let T be an ordered rooted tree with root r.
• If T consists only of r, then r is the post-order traversal of T .
• Otherwise, suppose that T1, T2,...,Tn are the subtrees at r from left to right. The post-order traversal
begins by traversing T1 in post-order, then T2 in post-order,..., Then Tn in post-order, and ends by
visiting r.
• So we can summarize as
• Traverse left-subtree in post-order.
• Traverse right-subtree in post-order.
• Visit the root.
• Left – right – root.
a
cb
b – c – aTahsin Aziz 50
POST-ORDER TRAVERSAL
• The post-order traversal of the tree is:a
cb
d e
h
gf
d - e - b - f - h - g - c - a
Tahsin Aziz 51
INFIX, PREFIX, AND POSTFIX NOTATION
• We can represent complicated expressions, such as compound propositions, combinations of
sets and arithmetic expressions using ordered rooted trees.
• For instance, consider the representation of an arithmetic expression involving the operators
+ (addition), − (subtraction), ∗ (multiplication), / (division), and ↑ (exponentiation).
• We will use parentheses to indicate the order of the operations.
• An ordered rooted tree can be used to represent such expressions, where the internal vertices
represent operations, and the leaves represent the variables or numbers.
• Each operation operates on its left and right subtrees.
Tahsin Aziz 52
INFIX, PREFIX, AND POSTFIX NOTATION
• An in-order traversal of the binary tree representing an expression produces the original
expression with the elements and operations in the same order as they originally occurred,
except for unary operations, which instead immediately follow their operands. To make such
expressions unambiguous it is necessary to include parentheses in the in-order traversal
whenever we encounter an operation. The fully parenthesized expression obtained in this
way is said to be in infix form.
• We obtain the prefix form of an expression when we traverse its rooted tree in pre-order.
Expressions written in prefix form are said to be in polish notation.
• We obtain the postfix form of an expression by traversing its binary tree in post-order.
Expressions written in postfix form are said to be in reverse polish notation.
Tahsin Aziz 53
PRE-FIX FORM
• The pre-fix of the tree is:+
/↑
+ 2
y
3-
xx 4
+ ↑ + x y 2 / - x 4 3
Tahsin Aziz 54
IN-FIX FORM
• The in-fix of the tree is:+
/↑
+ 2
y
3-
xx 4
x + y ↑ 2 + x - 4 / 3
Tahsin Aziz 55
POST-FIX FORM
• The post-fix of the tree is:+
/↑
+ 2
y
3-
xx 4
x y + 2 ↑ x 4 - 3 / +
Tahsin Aziz 56
THANK YOU ALL
57Tahsin Aziz

More Related Content

Similar to Trees

TERMINOLOGIES OF TREE, TYPES OF TREE.pptx
TERMINOLOGIES OF TREE, TYPES OF TREE.pptxTERMINOLOGIES OF TREE, TYPES OF TREE.pptx
TERMINOLOGIES OF TREE, TYPES OF TREE.pptxKALPANAC20
 
358 33 powerpoint-slides_10-trees_chapter-10
358 33 powerpoint-slides_10-trees_chapter-10358 33 powerpoint-slides_10-trees_chapter-10
358 33 powerpoint-slides_10-trees_chapter-10sumitbardhan
 
presentation-about-tree-Autosaved-copy.pptx
presentation-about-tree-Autosaved-copy.pptxpresentation-about-tree-Autosaved-copy.pptx
presentation-about-tree-Autosaved-copy.pptxRejowanAhmed1
 
BINARY TREE REPRESENTATION.ppt
BINARY TREE REPRESENTATION.pptBINARY TREE REPRESENTATION.ppt
BINARY TREE REPRESENTATION.pptSeethaDinesh
 
Tree Basic concepts of Tree in Data Structure
Tree Basic concepts of Tree in Data StructureTree Basic concepts of Tree in Data Structure
Tree Basic concepts of Tree in Data StructureManoj PAtil
 
Introduction to tree ds
Introduction to tree dsIntroduction to tree ds
Introduction to tree dsViji B
 
discrete mathematics binary%20trees.pptx
discrete mathematics binary%20trees.pptxdiscrete mathematics binary%20trees.pptx
discrete mathematics binary%20trees.pptxansariparveen06
 
Search tree,Tree and binary tree and heap tree
Search tree,Tree  and binary tree and heap treeSearch tree,Tree  and binary tree and heap tree
Search tree,Tree and binary tree and heap treezia eagle
 
Bca ii dfs u-3 tree and graph
Bca  ii dfs u-3 tree and graphBca  ii dfs u-3 tree and graph
Bca ii dfs u-3 tree and graphRai University
 
B.TECH Math project
B.TECH Math projectB.TECH Math project
B.TECH Math projectarunsarkar9
 

Similar to Trees (20)

TERMINOLOGIES OF TREE, TYPES OF TREE.pptx
TERMINOLOGIES OF TREE, TYPES OF TREE.pptxTERMINOLOGIES OF TREE, TYPES OF TREE.pptx
TERMINOLOGIES OF TREE, TYPES OF TREE.pptx
 
358 33 powerpoint-slides_10-trees_chapter-10
358 33 powerpoint-slides_10-trees_chapter-10358 33 powerpoint-slides_10-trees_chapter-10
358 33 powerpoint-slides_10-trees_chapter-10
 
Tree (Data Structure & Discrete Mathematics)
Tree (Data Structure & Discrete Mathematics)Tree (Data Structure & Discrete Mathematics)
Tree (Data Structure & Discrete Mathematics)
 
Tree.pptx
Tree.pptxTree.pptx
Tree.pptx
 
Trees
TreesTrees
Trees
 
Tree
TreeTree
Tree
 
Trees
Trees Trees
Trees
 
presentation-about-tree-Autosaved-copy.pptx
presentation-about-tree-Autosaved-copy.pptxpresentation-about-tree-Autosaved-copy.pptx
presentation-about-tree-Autosaved-copy.pptx
 
BINARY TREE REPRESENTATION.ppt
BINARY TREE REPRESENTATION.pptBINARY TREE REPRESENTATION.ppt
BINARY TREE REPRESENTATION.ppt
 
Tree Basic concepts of Tree in Data Structure
Tree Basic concepts of Tree in Data StructureTree Basic concepts of Tree in Data Structure
Tree Basic concepts of Tree in Data Structure
 
Introduction to tree ds
Introduction to tree dsIntroduction to tree ds
Introduction to tree ds
 
discrete mathematics binary%20trees.pptx
discrete mathematics binary%20trees.pptxdiscrete mathematics binary%20trees.pptx
discrete mathematics binary%20trees.pptx
 
7 Trees.pptx
7 Trees.pptx7 Trees.pptx
7 Trees.pptx
 
Trees
TreesTrees
Trees
 
Search tree,Tree and binary tree and heap tree
Search tree,Tree  and binary tree and heap treeSearch tree,Tree  and binary tree and heap tree
Search tree,Tree and binary tree and heap tree
 
DSA-Unit-2.pptx
DSA-Unit-2.pptxDSA-Unit-2.pptx
DSA-Unit-2.pptx
 
tree in Data Structures
tree in Data Structurestree in Data Structures
tree in Data Structures
 
Avl tree
Avl treeAvl tree
Avl tree
 
Bca ii dfs u-3 tree and graph
Bca  ii dfs u-3 tree and graphBca  ii dfs u-3 tree and graph
Bca ii dfs u-3 tree and graph
 
B.TECH Math project
B.TECH Math projectB.TECH Math project
B.TECH Math project
 

Recently uploaded

Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3JemimahLaneBuaron
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Celine George
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdfSoniaTolstoy
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Krashi Coaching
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxiammrhaywood
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeThiyagu K
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhikauryashika82
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104misteraugie
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Sapana Sha
 
fourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writingfourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writingTeacherCyreneCayanan
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsTechSoup
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introductionMaksud Ahmed
 
social pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajansocial pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajanpragatimahajan3
 
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...fonyou31
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfchloefrazer622
 
General AI for Medical Educators April 2024
General AI for Medical Educators April 2024General AI for Medical Educators April 2024
General AI for Medical Educators April 2024Janet Corral
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13Steve Thomason
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactdawncurless
 

Recently uploaded (20)

Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and Mode
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
 
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptxINDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
 
fourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writingfourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writing
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 
Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
social pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajansocial pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajan
 
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdf
 
General AI for Medical Educators April 2024
General AI for Medical Educators April 2024General AI for Medical Educators April 2024
General AI for Medical Educators April 2024
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impact
 

Trees

  • 1. TREES TAHSIN AZIZ COMPUTER SCIENCE AND ENGINEERING AHSANULLAH UNIVERSITY OF SCIENCE AND TECHNOLOGY
  • 2. REFERENCE BOOK DISCRETE MATHEMATICS AND ITS APPLICATIONS BY KENNETH H. ROSEN 2Tahsin Aziz
  • 3. TREE • A tree is a connected undirected graph with no simple circuits. • A tree cannot contain multiple edges or loops. Therefore any tree must be a simple graph. • Trees are often defined as undirected graphs with the property that there is a unique simple path between every pair of vertices. Tahsin Aziz 3
  • 4. TREE a b c f h lk g i j ed Tahsin Aziz 4
  • 5. TREE • A tree is a digraph with a non empty set of nodes such that- • There is exactly one node called the root of the tree which has in-degree zero. • Every node other than the root has in-degree one. • For every node a of the tree, there is a directed path from the root to a. Tahsin Aziz 5
  • 6. TREE a b c f h lk g i j ed Tahsin Aziz 6
  • 7. TREE • It is not tree as there are two nodes with degree zero. • This is also not tree as there one node has in-degree two. Tahsin Aziz 7
  • 8. TREE • It is not tree as there is no node with in-degree 0. Tahsin Aziz 8
  • 9. FOREST • A connected graph that contains no simple circuits that are not necessarily connected is called forests. • Forests have the property that each of their connected components is a tree. Tahsin Aziz 9
  • 11. THEOREM-1 • An undirected graph is a tree if and only if there is a unique simple path between any two of its vertices. • First assume that T is a tree. Then T is a connected graph with no simple circuits. • Let x and y be two vertices of T. Because T is connected, there is a simple path between x and y. Moreover, this path must be unique, for if there were a second such path, the path formed by combining the first path from x to y followed by the path from y to x obtained by reversing the order of the second path from x to y would form a circuit. This implies that there is a simple circuit in T. Hence, there is a unique simple path between any two vertices of a tree. • Now assume that there is a unique simple path between any two vertices of a graph T. Then T is connected, because there is a path between any two of its vertices. Furthermore, T can have no simple circuits. To see that this is true, suppose T had a simple circuit that contained the vertices x and y. Then there would be two simple paths between x and y, because the simple circuit is made up of a simple path from x to y and a second simple path from y to x. • Hence, a graph with a unique simple path between any two vertices is a tree. Tahsin Aziz 11
  • 12. ROOTED TREE • A rooted tree is a tree in which one vertex has been designated as the root and every edge is directed away from the root. • Here vertex a is the root of the tree. a b c f hged Tahsin Aziz 12
  • 13. PARENT • Suppose that T is a rooted tree. If v is a vertex in T other than the root, the parent of v is the unique vertex u such that there is a directed edge from u to v. • Here vertex b is the parent of vertex d and vertex e. a b c f hged Tahsin Aziz 13
  • 14. CHILD • Suppose that T is a rooted tree. When u is the parent of v, v is called a child of u. • Here vertex d is the child of vertex b. a b c f hged Tahsin Aziz 14
  • 15. SIBLINGS • Suppose that T is a rooted tree. Vertices with the same parent are called siblings • Here vertex d and vertex b are siblings as both of their parent is vertex b. a b c f hged Tahsin Aziz 15
  • 16. ANCESTORS • Suppose that T is a rooted tree. The ancestors of a vertex other than the root are the vertices in the path from the root to this vertex, excluding the vertex itself and including the root. • Here ancestors of a vertex i are h, c and a. a b c f hg i j ed Tahsin Aziz 16
  • 17. DESCENDANTS • Suppose that T is a rooted tree. The descendants of a vertex v are those vertices that have v as an ancestor. • Here descendants of a vertex c are f, g, h, i and j. a b c f hg i j ed Tahsin Aziz 17
  • 18. LEAF OR TERMINAL VERTEX • Suppose that T is a rooted tree. A vertex of a rooted tree is called a leaf if it has no children. • A vertex of degree one in a tree is called a leaf or terminal vertex. • Here d, e, f, g, i and j are leaves. a b c f hg i j ed Tahsin Aziz 18
  • 19. INTERNAL VERTICES • Suppose that T is a rooted tree. Vertices that have children are called internal vertices. • The root is an internal vertex unless it is the only vertex in the graph, in which case it is a leaf. • Here a, b, c and h are internal vertices. a b c f h g i j ed Tahsin Aziz 19
  • 20. SUBTREE • Suppose that T is a rooted tree. If a is a vertex in a tree, the subtree with a as its root is the subgraph of the tree consisting of a and its descendants and all edges incident to these descendants. a b c f h g i j ed Tahsin Aziz 20
  • 21. SUBTREE • The subtree rooted as c of the given tree is c f hg i j Tahsin Aziz 21
  • 22. DEFINITIONS • Interval vertex or branch vertex • A vertex of degree greater than one in a tree is called an interval vertex or a branch vertex. • Trival tree • A graph consisting of a single vertex. Tahsin Aziz 22
  • 23. M-ARY TREE • A rooted tree is called an m-ary tree if every internal vertex has no more than m children. • The tree is called a full m-ary tree if every internal vertex has exactly m children. • An m-ary tree with m = 2 is called a binary tree. Tahsin Aziz 23
  • 24. M-ARY TREE a b ed gf c a b c fe d A full binary tree A m-ary tree Tahsin Aziz 24
  • 25. BINARY TREE • Each node may have two, one or zero child. • No node will have more than two child. • This type of tree is known as binary tree. a b f ed c Tahsin Aziz 25
  • 26. COMPLETE BINARY TREE • Each node may have two or zero child. • This type of tree is known as complete binary tree. a b f ed c d Tahsin Aziz 26
  • 27. COMPLETE M-ARY TREE • Each node may have m or zero child. • This type of tree is known as complete binary tree. a b ed c… … … … … … … … 0 m 0 m Tahsin Aziz 27
  • 28. TERNARY TREE • It may have three, two, one or zero child. • No node will have more than three child. • This type of tree is called ternary tree. a b h ge dc f i kj Tahsin Aziz 28
  • 29. ORDERED ROOTED TREE • An ordered rooted tree is a rooted tree where the children of each internal vertex are ordered. • Ordered rooted trees are drawn so that the children of each internal vertex are shown in order from left to right. • A representation of a rooted tree in the conventional way determines an ordering for its edges. • For some applications every vertex of a binary tree, other than the root, is designated as a right or a left child of its parent. • This is done even when some vertices have only one child. • Ordered rooted trees can be defined recursively. • Binary trees, a type of ordered rooted trees. Tahsin Aziz 29
  • 30. LEFT CHILD • In an ordered binary tree, if an internal vertex has two children, the first child is called the left child. • The tree rooted at the left child of a vertex is called the left subtree of this vertex. Tahsin Aziz 30
  • 31. LEFT CHILD a b ed gf c d c Left subtree of the vertex C Tahsin Aziz 31
  • 32. RIGHT CHILD • In an ordered binary tree, if an internal vertex has two children, the second child is called the right child. • The tree rooted at the right child of a vertex is called the right subtree of the vertex. Tahsin Aziz 32
  • 33. RIGHT CHILD a b ed gf c Right subtree of the vertex C e gf c Tahsin Aziz 33
  • 34. TREES AS MODELS • Saturated hydrocarbons and trees • Representing organizations • Computer file systems • Tree-connected parallel processors Tahsin Aziz 34
  • 35. THEOREM-2 • A tree with n vertices has n − 1 edges. • Proof: • Basis Step: When n = 1, a tree with n = 1 vertex has no edges. It follows that the theorem is true for n = 1. • Inductive Hypothesis: The inductive hypothesis states that every tree with k vertices has k − 1 edges, where k is a positive integer. • Inductive Step: • Suppose that a tree T has k + 1 vertices and that v is a leaf of T which must exist because the tree is finite and let w be the parent of v. • Removing from T the vertex v and the edge connecting w to v produces a tree T’ with k vertices, because the resulting graph is still connected and has no simple circuits. • By the inductive hypothesis, T’ has k − 1 edges. It follows that T has k edges because it has one more edge than T’ , the edge connecting v and w. This completes the inductive step. Tahsin Aziz 35
  • 36. THEOREM-3 • A full m-ary tree with i internal vertices contains n = mi + 1 vertices. • Proof: • Suppose that T is a full m-ary tree. Let i be the number of internal vertices in this tree. • Every vertex, except the root, is the child of an internal vertex. • Because each of the i internal vertices has m children, there are mi vertices in the tree other than the root. Therefore, the tree contains n = mi + 1 vertices. Tahsin Aziz 36
  • 37. THEOREM-4 • A full m-ary tree with i. n vertices has i = (n − 1)/m internal vertices and l = [(m − 1)n + 1]/m leaves. ii. i internal vertices has n = mi + 1 vertices and l = (m − 1)i + 1 leaves iii. l leaves has n = (ml − 1)/(m − 1) vertices and i = (l − 1)/(m − 1) internal vertices. • Proof of (i): • Let n represent the number of vertices, i the number of internal vertices, and l the number of leaves. • We know, A full m-ary tree with i internal vertices contains n = mi + 1 vertices which implies i = 𝑛−1 𝑚 • Moreover, each vertex is either a leaf or an internal vertex. So we can write n = l + i • Putting the value of i in the equation we can obtain, n = l + 𝑛−1 𝑚 which implies l = n - 𝑛−1 𝑚 = 𝑛𝑚−𝑛+1 𝑚 = 𝑚−1 𝑛+1 𝑚 Tahsin Aziz 37
  • 38. THEOREM-4 • A full m-ary tree with i. n vertices has i = (n − 1)/m internal vertices and l = [(m − 1)n + 1]/m leaves. ii. i internal vertices has n = mi + 1 vertices and l = (m − 1)i + 1 leaves iii. l leaves has n = (ml − 1)/(m − 1) vertices and i = (l − 1)/(m − 1) internal vertices. • Proof of (ii): • Let n represent the number of vertices, i the number of internal vertices, and l the number of leaves. • Every vertex, except the root, is the child of an internal vertex. Because each of the i internal vertices has m children, there are mi vertices in the tree other than the root. Therefore, the tree contains n = mi + 1 vertices. • Moreover, each vertex is either a leaf or an internal vertex. So we can write n = l + i which implies l = n – i. • Putting the value of n in the equation we can obtain, l = mi + 1 – i which implies l = (m - 1)i + 1. Tahsin Aziz 38
  • 39. THEOREM-4 • A full m-ary tree with i. n vertices has i = (n − 1)/m internal vertices and l = [(m − 1)n + 1]/m leaves. ii. i internal vertices has n = mi + 1 vertices and l = (m − 1)i + 1 leaves iii. l leaves has n = (ml − 1)/(m − 1) vertices and i = (l − 1)/(m − 1) internal vertices. • Proof of (iii): • Let n represent the number of vertices, i the number of internal vertices, and l the number of leaves. • We know, A full m-ary tree with i internal vertices contains n = mi + 1 vertices which implies i = 𝑛−1 𝑚 • Moreover, each vertex is either a leaf or an internal vertex. So we can write n = l + i which implies l = n – i. • Putting the value of n in the equation we can obtain, l = mi + 1 – i which implies l = (m - 1)i + 1. • Again if we put the value of i in the equation we can write, l = (m - 1) × 𝑛−1 𝑚 + 1 which implies n = 𝑚𝑙−1 𝑚−1 . • Putting the value of n in l = n – i we can obtain i = (l − 1)/(m − 1). Tahsin Aziz 39
  • 40. EXAMPLE • Suppose that someone starts a chain letter. Each person who receives the letter is asked to send it on to four other people. Some people do this, but others do not send any letters. How many people have seen the letter, including the first person, if no one receives more than one letter and if the chain letter ends after there have been 100 people who read it but did not send it out? How many people sent out the letter? • Solution • The chain letter can be represented using a 4-ary tree. The internal vertices correspond to people who sent out the letter, and the leaves correspond to people who did not send it out. Because 100 people did not send out the letter, the number of leaves in this rooted tree is l = 100. Hence, we know n = 𝑚𝑙−1 𝑚−1 • So the number of people who have seen the letter is n = 4 ×100−1 4−1 = 133. • We know, n = l + i which implies i = n – l. So, the number of people sent out the letter is 133 − 100 = 33. Tahsin Aziz 40
  • 41. BALANCED M-ARY TREE • It is often desirable to use rooted trees that are “balanced” so that the subtrees at each vertex contain paths of approximately the same length. • The level of a vertex v in a rooted tree is the length of the unique path from the root to this vertex. The level of the root is defined to be zero. • The height of a rooted tree is the maximum of the levels of vertices. • A rooted m-ary tree of height h is balanced if all leaves are at levels h or h − 1. Tahsin Aziz 41
  • 42. HEIGHT OF A TREE • The height of the tree is the length of the longest path to a leaf from the root. Level 0 Level 1 Level 2 Level 3 Level 4 Tahsin Aziz 42
  • 43. THEOREM-5 • There are at most mh leaves in an m-ary tree of height h. • Proof: • Basis Step: First, consider m-ary trees of height 1. These trees consist of a root with no more than m children, each of which is a leaf. Hence, there are no more than m1 = m leaves in an m-ary tree of height 1. • Inductive Hypothesis: Now assume that the result is true for all m-ary trees of height less than h. • Induction Step: Let T be an m-ary tree of height h. The leaves of T are the leaves of the subtrees of T obtained by deleting the edges from the root to each of the vertices at level 1. Each of these subtrees has height less than or equal to h − 1. So by the inductive hypothesis, each of these rooted trees has at most mh−1 leaves. Because there are at most m such subtrees, each with a maximum of mh−1 leaves, there are at most m × mh − 1 = mh leaves in the rooted tree. Tahsin Aziz 43
  • 44. APPLICATIONS OF TREES • Binary search trees • Decision trees • Prefix codes • Game trees Tahsin Aziz 44
  • 45. TREE TRAVERSAL • Procedures for systematically visiting every vertex of an ordered rooted tree are called traversal algorithms. • We will describe three of the most commonly used such algorithms: • Pre-order traversal • In-order traversal • Post-order traversal. • Each of these algorithms can be defined recursively. Tahsin Aziz 45
  • 46. PRE-ORDER TRAVERSAL • Let T be an ordered rooted tree with root r. • If T consists only of r, then r is the pre-order traversal of T . • Otherwise, suppose that T1, T2,...,Tn are the subtrees at r from left to right in T. • The pre-order traversal begins by visiting r. It continues by traversing T1 in pre-order, then T2 in pre- order, and so on, until Tn is traversed in pre-order. • So we can summarize as • Visit the root. • Traverse left-subtree in pre-order. • Traverse right-subtree in pre-order. • Root – left – right. cb a a – b – cTahsin Aziz 46
  • 47. PRE-ORDER TRAVERSAL • The pre-order traversal of the tree is:a cb d e h gf a - b - d - e - c - f - g - h Tahsin Aziz 47
  • 48. IN-ORDER TRAVERSAL • Let T be an ordered rooted tree with root r. • If T consists only of r, then r is the in-order traversal of T . • Otherwise, suppose that T1, T2,...,Tn are the subtrees at r from left to right. • The in-order traversal begins by traversing T1 in in-order, then visiting r. It continues by traversing T2 in in-order, then T3 in in-order,..., And finally Tn in in-order. • So we can summarize as • Traverse left-subtree in in-order. • Visit the root. • Traverse right-subtree in in-order. • Left – root – right. a cb b – a – cTahsin Aziz 48
  • 49. IN-ORDER TRAVERSAL • The in-order traversal of the tree is:a cb d e h gf d - b - e - a - f - c - h - g Tahsin Aziz 49
  • 50. POST-ORDER TRAVERSAL • Let T be an ordered rooted tree with root r. • If T consists only of r, then r is the post-order traversal of T . • Otherwise, suppose that T1, T2,...,Tn are the subtrees at r from left to right. The post-order traversal begins by traversing T1 in post-order, then T2 in post-order,..., Then Tn in post-order, and ends by visiting r. • So we can summarize as • Traverse left-subtree in post-order. • Traverse right-subtree in post-order. • Visit the root. • Left – right – root. a cb b – c – aTahsin Aziz 50
  • 51. POST-ORDER TRAVERSAL • The post-order traversal of the tree is:a cb d e h gf d - e - b - f - h - g - c - a Tahsin Aziz 51
  • 52. INFIX, PREFIX, AND POSTFIX NOTATION • We can represent complicated expressions, such as compound propositions, combinations of sets and arithmetic expressions using ordered rooted trees. • For instance, consider the representation of an arithmetic expression involving the operators + (addition), − (subtraction), ∗ (multiplication), / (division), and ↑ (exponentiation). • We will use parentheses to indicate the order of the operations. • An ordered rooted tree can be used to represent such expressions, where the internal vertices represent operations, and the leaves represent the variables or numbers. • Each operation operates on its left and right subtrees. Tahsin Aziz 52
  • 53. INFIX, PREFIX, AND POSTFIX NOTATION • An in-order traversal of the binary tree representing an expression produces the original expression with the elements and operations in the same order as they originally occurred, except for unary operations, which instead immediately follow their operands. To make such expressions unambiguous it is necessary to include parentheses in the in-order traversal whenever we encounter an operation. The fully parenthesized expression obtained in this way is said to be in infix form. • We obtain the prefix form of an expression when we traverse its rooted tree in pre-order. Expressions written in prefix form are said to be in polish notation. • We obtain the postfix form of an expression by traversing its binary tree in post-order. Expressions written in postfix form are said to be in reverse polish notation. Tahsin Aziz 53
  • 54. PRE-FIX FORM • The pre-fix of the tree is:+ /↑ + 2 y 3- xx 4 + ↑ + x y 2 / - x 4 3 Tahsin Aziz 54
  • 55. IN-FIX FORM • The in-fix of the tree is:+ /↑ + 2 y 3- xx 4 x + y ↑ 2 + x - 4 / 3 Tahsin Aziz 55
  • 56. POST-FIX FORM • The post-fix of the tree is:+ /↑ + 2 y 3- xx 4 x y + 2 ↑ x 4 - 3 / + Tahsin Aziz 56