Download presentation
Presentation is loading. Please wait.
Published byMolly Kelley Modified over 9 years ago
1
Section 10.1 Introduction to Trees These class notes are based on material from our textbook, Discrete Mathematics and Its Applications, 6 th ed., by Kenneth H. Rosen, published by McGraw Hill, Boston, MA, 2006. They are intended for classroom use only and are not a substitute for reading the textbook. Chapter 10
2
Tree A tree is a connected undirected graph with –No simple circuits –No multiple edges –No loops An undirected graph is a tree if and only if there is a unique simple path between any two of its vertices.
3
Which graphs are trees? a b c d e f a b c d e f a b c d e f a b c d e f YES YES NO NO
4
Forest What if there are no simple circuits but the graph is not connected? Each of the connected components is a tree The collection is called a forest.
5
Rooted Tree Specify a vertex as root, then direct each edge away from the root. The resulting tree is called a rooted tree. Root
6
Example Root a b c d e f a b c d e f a b c d e f
7
What if a different root is chosen? A different rooted tree results. Root a b c d e f a b c d e f a b c d e f a b c d e f
8
Tree Terminology If v is a vertex of tree 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. When u is the parent of v, v is called the child of u. If two vertices share the same parent, then they are called siblings.
9
Example a b c d e f g h i j k l m Root
10
Example a b c d e f g h i j k l m Siblings
11
Tree Terminology (Cont.) 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. The descendants of a vertex v are those vertices that have v as an ancestor.
12
Example a b c d e f g h i j k l m Ancestors of k
13
a b c d e f g h i j k l m Example Descendants of d
14
Tree Terminology (Cont.) A vertex with no children is called a leaf. Vertices with children are called internal vertices.
15
Example a b c d e f g h i j k l m Leaves
16
Example a b c d e f g h i j k l m Internal vertices
17
Tree Terminology (Cont.) 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.
18
Example a b c d e f g h i j k l m Subtree at dSubtree at b
19
Tree Terminology (Cont.) A rooted tree is called an m-ary tree if every internal vertex has no more than m children. A 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.
20
Example What is the arity of this tree? Is this a full m-ary tree? ------------------- This is a 2-ary, or binary, tree. Yes, this is a full binary tree, since every internal vertex has exactly 2 children.
21
Example What is the arity of this tree? Is this a full m-ary tree? -------- This is a 3-ary tree. Yes, this is a full 3-ary tree, since every internal vertex has exactly 3 children.
22
Example What is the arity of this tree? Is this a full m-ary tree? ------- This is a full 5-ary tree.
23
Example What is the arity of this tree? Is this a full m-ary tree? Some internal nodes have 2 children, but some have 3, so this is a 3-ary tree. It is not a full-3-ary tree, since one internal node has only 2 children.
24
Ordered Rooted Tree An ordered rooted tree is one where the children of each internal vertex are ordered. In an ordered binary tree, if an internal vertex has two children, then they are called left child and right child. The subtree rooted at the left child of a vertex is called the left subtree and subtree rooted at the right child of a vertex is called the right subtree.
25
Example Left child of d a b c d e h i f g j k l m
26
Example Right child of d a b c d e h i f g j k l m
27
Example a b c d e h i f g j k l m Left subtree of c
28
Example a b c d e h i f g j k l m Right subtree of c
29
Tree Terminology (Cont.) The level of a vertex v in a rooted tree is the length of the unique path from the root to this vertex. What is the level of the root? 0 The height of a rooted tree is the maximum of the levels of the vertices.
30
Example a b c d e f g h i j k l m Levels 0 1 2 3 Height = 3
31
Properties of Trees A tree with n vertices has n 1 edges. An full m-ary tree with i internal vertices contains n = mi + 1 vertices. A rooted m-ary tree of height h is called balanced if all leaves are at levels h or h–1.
32
Example Is this tree balanced?
33
Example Is this tree balanced?
34
Example Is this tree balanced?
35
Tree Properties (Cont.) There are at most m h leaves in an m-ary tree of height h If an m-ary tree with l leaves is full and balanced, then its height is h = log m l
36
Homework Exercises Do Section 10.1 exercises # 1, 3, 5, 7, 9, 17, 19, 20, 27, 28
37
CSE 2813 Discrete Structures Chapter 10, Section 10.2 Applications of Trees These class notes are based on material from our textbook, Discrete Mathematics and Its Applications, 6 th ed., by Kenneth H. Rosen, published by McGraw Hill, Boston, MA, 2006. They are intended for classroom use only and are not a substitute for reading the textbook.
38
Applications of Trees Binary Search Trees Decision Trees Prefix Codes (Huffman Coding) Game Trees
39
Full and Complete Binary Trees A full binary tree is a binary tree in which each node is either a leaf node or has degree 2 (i.e., has exactly 2 children). A complete binary tree is a full binary tree in which all leaves have the same depth. A nearly complete binary tree is completely filled on all levels except possibly the lowest, which is filled from the left up to a point.
40
Examples Full binary tree: Complete binary tree:
41
Binary Trees What is the smallest height possible in a binary tree of 7 nodes? How many leaf nodes does it have? height = 2 num. leaves = 4
42
Binary Trees What is the smallest height possible in a binary tree of 15 nodes? How many leaf nodes does it have? height = 3 num. leaves = 8
43
Binary Trees What is the smallest height possible in a binary tree of 31 nodes? How many leaf nodes does it have? height = 4 num. leaves = 16
44
Binary Trees What is the smallest height possible in a binary tree of (2 n ) - 1 nodes? The smallest height possible in a binary tree of (2 n ) - 1 nodes is n – 1. Example: a tree with 31 nodes has 2 5 – 1 nodes, so n = 5, and its height = (n – 1) = (5 – 1) = 4.
45
Binary Trees How many leaf nodes does a binary tree of (2 n ) - 1 nodes have? A tree with (2 n ) - 1 nodes has 2 n-1 leaves Example: A tree with 31 nodes has 2 5 – 1 nodes, so n = 5, and this tree has 2 n-1 = 2 5-1 = 2 4 = 16 leaves.
46
Binary Trees Note the pattern here: In a completely filled binary tree with (2 n ) – 1 nodes, half of the nodes (rounding up) will be leaves. That is, (2 n ) / 2 nodes will be leaf nodes. And we can rewrite (2 n ) / 2 as 2 n-1.
47
Binary Trees Lemma: For any h 1, a binary tree which has more than 2 h-1 leaf nodes must have a height greater than h – 1. Example: If a binary tree has 17 leaf nodes, can it have a height of 4? No; a complete binary tree of height 4 has only 16 leaf nodes. A binary tree with 17 leaves must have a height greater than 4.
48
Binary Search Trees
50
Decision Trees
52
Prefix Codes
53
Huffman Codes Consider the problem of data compression. Suppose that we have a 100,000-character file that contains only 6 different characters, a - f. Some characters occur more frequently than others. Currently, the file is stored using a fixed-length code of 3 bits per character, where a = 000, b = 001,..., f = 101. This requires 300,000 bits to store the file. This slide and the next 53 are adapted from: Cormen, Leiserson, Rivest, and Stein, Introduction to Algorithms, 2nd edition, The MIT Press, McGraw-Hill, 2001.
54
Huffman Codes Huffman coding uses a variable-length code to compress the file. We can use a 0 to represent the most frequently- occurring letter in the file, which will save us two bits per occurrence. Huffman codes are prefix codes, which means that all bit patterns are unambiguous; this requires that the bit-patterns for our other letters be 3 or 4 bits long. Using Huffman coding, we can store the file in 2240,00 bits.
55
Huffman Codes abcdef Frequency of occurrence (in thousands) 4513121695 Codeword (fixed- length) 000001010011110101 Codeword (variable length) 010110011111011100
56
Huffman Codes Since we are using a prefix code, we can simply concatenate our codewords together to produce our bitstring. For example, the string abc can be represented as 0101100. This is unambiguous. Why?
57
Huffman Codes Only one character can begin with 0; that is a. So a must be the first character in our string. This leaves 101100. The next bit is a 1; five characters can begin with 1, so we look at the second bit. Two characters can begin with 10, so we look at the third bit. Only one character can begin with 101; that is b. This leaves 100. Again, looking at all three bits, we see that this character must be c.
58
Huffman Codes
59
Huffman Coding, using a “Greedy Algorithm”
60
Game Trees
63
CSE 2813 Discrete Structures Chapter 10, Section 10.3 Tree Traversal These class notes are based on material from our textbook, Discrete Mathematics and Its Applications, 6 th ed., by Kenneth H. Rosen, published by McGraw Hill, Boston, MA, 2006. They are intended for classroom use only and are not a substitute for reading the textbook.
64
Universal Address Systems To totally order the vertices of on orered rooted tree: 1.Label the root with the integer 0. 2.Label its k children (at level 1) from left to right with 1, 2, 3, …, k. 3.For each vertex v at level n with label A, label its k v children, from left to right, with A.1, A.2, A.3, …, A.k v. This labeling is called the universal address system of the ordered rooted tree.
65
Universal Address Systems
66
Traversal Algorithms A traversal algorithm is a procedure for systematically visiting every vertex of an ordered rooted tree –An ordered rooted tree is a rooted tree where the children of each internal vertex are ordered The three common traversals are: –Preorder traversal –Inorder traversal –Postorder traversal
67
Traversal Let T be an ordered rooted tree with root r. Suppose T 1, T 2, …,T n are the subtrees at r from left to right in T. r T1T1 T2T2 TnTn
68
Preorder Traversal r T1T1 T2T2 TnTn Step 1: Visit r Step 2: Visit T 1 in preorder Step 3: Visit T 2 in preorder. Step n+1: Visit T n in preorder
69
Preorder Traversal
70
Example AREYPMHJQT A R EY P M HJ QT Tree: Visiting sequence:
71
The Preorder Traversal of T In which order does a preorder traversal visit the vertices in the ordered rooted tree T shown to the left? Preorder: Visit root, then visit subtrees left to right.
72
The Preorder Traversal of T © The McGraw-Hill Companies, Inc. all rights reserved Preorder: Visit root, then visit subtrees left to right.
73
The Preorder Traversal of T © The McGraw-Hill Companies, Inc. all rights reserved
74
The Preorder Traversal of T © The McGraw-Hill Companies, Inc. all rights reserved
75
The Preorder Traversal of T © The McGraw-Hill Companies, Inc. all rights reserved
76
Inorder Traversal Step 1: Visit T 1 in inorder Step 2: Visit r Step 3: Visit T 2 in inorder. Step n+1: Visit T n in inorder r T1T1 T2T2 TnTn
77
Example AREYPMHJQT A R EY P M HJ QT Tree: Visiting sequence:
78
The Inorder Traversal of T In which order does an inorder traversal visit the vertices in the ordered rooted tree T shown to the left? Inorder: Visit leftmost tree, visit root, visit other subtrees left to right.
79
The Inorder Traversal of T © The McGraw-Hill Companies, Inc. all rights reserved Inorder: Visit leftmost tree, visit root, visit other subtrees left to right.
80
The Inorder Traversal of T © The McGraw-Hill Companies, Inc. all rights reserved
81
The Inorder Traversal of T © The McGraw-Hill Companies, Inc. all rights reserved
82
The Inorder Traversal of T © The McGraw-Hill Companies, Inc. all rights reserved
83
Postorder Traversal Step 1: Visit T 1 in postorder Step 2: Visit T 2 in postorder. Step n: Visit T n in postorder Step n+1: Visit r r T1T1 T2T2 TnTn
84
Example AREYPMHJQT A R EY P M HJ QT Tree: Visiting sequence:
85
The Postorder Traversal of T In which order does a postorder traversal visit the vertices in the ordered rooted tree T shown to the left? Postorder: Visit subtrees left to right, then visit root.
86
The Postorder Traversal of T © The McGraw-Hill Companies, Inc. all rights reserved Postorder: Visit subtrees left to right, then visit root.
87
The Postorder Traversal of T © The McGraw-Hill Companies, Inc. all rights reserved
88
The Postorder Traversal of T © The McGraw-Hill Companies, Inc. all rights reserved
89
The Postorder Traversal of T © The McGraw-Hill Companies, Inc. all rights reserved
90
Representing Arithmetic Expressions Complicated arithmetic expressions can be represented by an ordered rooted tree –Internal vertices represent operators –Leaves represent operands Build the tree bottom-up –Construct smaller subtrees –Incorporate the smaller subtrees as part of larger subtrees
91
Example (x+y) 2 + (x-3)/(y+2) + x y 2 – x 3 + y 2 / +
92
Infix Notation + – + / + 2 x y x 3 y 2 Traverse in inorder adding parentheses for each operation x + y () 2 () + x – 3() / y + 2() () ()
93
Prefix Notation (Polish Notation) Traverse in preorder: x + y 2 + x – 3 / y + 2 + – + / + 2 x y x 3 y 2
94
Evaluating Prefix Notation In an prefix expression, a binary operator precedes its two operands The expression is evaluated right-left Look for the first operator from the right Evaluate the operator with the two operands immediately to its right
95
Example + / + 2 2 2 / – 3 2 + 1 0 + / + 2 2 2 / – 3 2 1 + / + 2 2 2 / 1 1 + / + 2 2 2 1 + / 4 2 1 + 2 1 3
96
Postfix Notation (Reverse Polish) Traverse in postorder x + y 2 + x – 3 / y + 2 + – + / + 2 x y x 3 y 2
97
In an postfix expression, a binary operator follows its two operands The expression is evaluated left-right Look for the first operator from the left Evaluate the operator with the two operands immediately to its left Evaluating Postfix Notation
98
Example 3 2 2 + 2 / 3 2 – 1 0 + / + 4 2 / 3 2 – 1 0 + / + 2 3 2 – 1 0 + / + 2 1 1 0 + / + 2 1 1 / + 2 1 +
99
Homework Exercises Do questions : 7, 9, 10, 12, 13, 15, 16, 17, 18, 23, 24
100
Conclusion In this chapter we have studied: –Trees –Applications of Trees –Tree Traversal
Similar presentations
© 2025 SlidePlayer.com. Inc.
All rights reserved.