1 / 127

Chapter 5

Chapter 5. Trees. Definition: A tree is a finite set of one or more nodes such that: There is a specially designated node called the root.

blaine
Download Presentation

Chapter 5

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Chapter 5

  2. Trees • Definition: A tree is a finite set of one or more nodes such that: • There is a specially designated node called the root. • The remaining nodes are partitioned into n ≥ 0 disjoint sets T1, …, Tn, where each of these sets is a tree. We call T1, …, Tn the subtrees of the root.

  3. Pedigree Genealogical Chart Cheryl Rosemary Kevin Kelly Richard John Terry Jack Anthony Michelle Mary Karen Joe Mike Angela Binary Tree

  4. Lineal Genealogical Chart Proto Indo-European Italic Hellenic Germanic Osco-Umbrian Latin Greek North Germanic West Germanic Osco Umbrian Spanish French Italian Icelandic Norwegian Swedish Low High Yiddish

  5. Tree Terminology • Normally we draw a tree with the root at the top. • The degree of a node is the number of subtrees of the node. • The degree of a tree is the maximum degree of the nodes in the tree. • A node with degree zero is a leaf or terminal node. • A node that has subtrees is the parent of the roots of the subtrees, and the roots of the subtrees are the children of the node. • Children of the same parent are called siblings.

  6. Tree Terminology (Cont.) • The ancestors of a node are all the nodes along the path from the root to the node. • The descendants of a node are all the nodes that are in its subtrees. • Assume the root is at level 1, then the level of a node is the level of the node’s parent plus one. • The height or the depth of a tree is the maximum level of any node in the tree.

  7. A Sample Tree Level A 1 2 B C D 3 E F G H I J 4 K L M

  8. List Representation of Trees A 0 B F 0 C G 0 D I J 0 E K L 0 H M 0

  9. Possible Node Structure For A Tree of Degree k • Lemma 5.1: If T is a k-ary tree (i.e., a tree of degree k) with n nodes, each having a fixed size as in Figure 5.4, then n(k-1) + 1 of the nk child fileds are 0, n ≥ 1. Child k … Child 4 Child 3 Child 2 Child 1 Data Wasting memory!

  10. Representation of Trees • Left Child-Right Sibling Representation • Each node has two links (or pointers). • Each node only has one leftmost child and one closest sibling. A data left child right sibling B C D E F G H I J K L M

  11. Degree Two Tree Representation A B C E F K G D Binary Tree! L H M I J

  12. Binary Tree • Definition: A binary tree is a finite set of nodes that is either empty or consists of a root and two disjoint binary trees called the left subtree and the right subtree. • There is no tree with zero nodes. But there is an empty binary tree. • Binary tree distinguishes between the order of the children while in a tree we do not.

  13. Tree Representations A A A B B B A A A B C B B C C Left child-right sibling Binary tree

  14. A A B B Binary Tree Examples A A B B C C D E F G D H I E

  15. The Properties of Binary Trees • Lemma 5.2 [Maximum number of nodes] • The maximum number of nodes on level i of a binary tree is 2i-1, i ≥ 1. • The maximum number of nodes in a binary tree of depth k is 2k – 1, k ≥ 1.

  16. The Properties of Binary Trees • Lemma 5.3 [Relation between number of leaf nodes and nodes of degree 2]: For any non-empty binary tree, T, if n0 is the number of leaf nodes and n2 the number of nodes of degree 2, then n0 = n2 + 1. • Definition: A full binary tree of depth k is a binary tree of depth k having 2k – 1 nodes, k ≥ 0.

  17. Binary Tree Definition • Definition: A binary tree with n nodes and depth k is complete iff its nodes correspond to the nodes numbered from 1 to n in the full binary tree of depth k. level 1 1 2 2 3 3 6 4 7 5 4 12 13 8 9 14 15 10 11

  18. Array Representation of A Binary Tree • Lemma 5.4: If a complete binary tree with n nodes is represented sequentially, then for any node with index i,1 ≤ i ≤ n, we have: • parent(i) is at if i ≠1. If i = 1, i is at the root and has no parent. • left_child(i) is at 2i if 2i ≤ n. If 2i > n, then i has no left child. • right_child(i) is at 2i + 1 if 2i + 1 ≤ n. If 2i + 1 > n, then i has no right child. • Position zero of the array is not used.

  19. Proof of Lemma 5.4 (2) Assume that for all j, 1≤ j ≤ i, left_child(j) is at 2j. Then two nodes immediately preceding left_child(i + 1) are the right and left children of i. The left child is at 2i. Hence, the left child of i + 1 is at 2i + 2 = 2(i + 1) unless 2(i + 1) > n, in which case i + 1 has no left child.

  20. A [1] [2] B [3] [4] C [5] [6] [7] [8] D [9] [16] E Array Representation of Binary Trees A [1] [2] B C [3] [4] D [5] E [6] F G [7] [8] H I [9]

  21. Linked Representation class Tree; class TreeNode { friendclass Tree; private: TreeNode *LeftChild; char data; TreeNode *RightChild; }; class Tree { public: // Tree operations . private: TreeNode *root; };

  22. Node Representation data LeftChild RightChild LeftChild data RightChild

  23. A E H 0 I 0 Linked List Representation For The Binary Trees root root A 0 B 0 C B C 0 D F 0 G 0 D 0 0 E 0

  24. Tree Traversal • When visiting each node of a tree exactly once, this produces a linear order for the node of a tree. • There are 3 traversals if we adopt the convention that we traverse left before right: LVR (inorder), LRV (postorder), and VLR (preorder). • When implementing the traversal, a recursion is perfect for the task.

  25. Binary Tree With Arithmetic Expression + * E * D / C A B

  26. Tree Traversal • Inorder Traversal: A/B*C*D+E => Infix form • Preorder Traversal: +**/ABCDE => Prefix form • Postorder Traversal: AB/C*D*E+ => Postfix form

  27. Iterative Inorder Traversal

  28. Level-Order Traversal • All previous mentioned schemes use stacks. • Level-order traversal uses a queue. • Level-order scheme visit the root first, then the root’s left child, followed by the root’s right child. • All the node at a level are visited before moving down to another level.

  29. Level-Order Traversal of A Binary Tree +*E*D/CAB

  30. Traversal Without A Stack • Use of parent field to each node. • Use of two bits per node to represents binary trees as threaded binary trees.

  31. Some Other Binary Tree Functions • With the inorder, postorder, or preorder mechanisms, we can implement all needed binary tree functions. E.g., • Copying Binary Trees • Testing Equality • Two binary trees are equal if their topologies are the same and the information in corresponding nodes is identical.

  32. The Satisfiability Problem • Expression Rules • A variable is an expression • If x and y are expressions then are expressions • Parentheses can be used to alter the normal order of evaluation, which is not before and before or.

  33. Propositional Formula In A Binary Tree x3 x1 x3 x2 x1 O(g2n)

  34. Perform Formula Evaluation • To evaluate an expression, we can traverse its tree in postorder. • To perform evaluation, we assume each node has four fields • LeftChild • data • value • RightChild LeftChild RightChild value data

  35. First Version of Satisfiability Algorithm For all 2n possible truth value combinations for the n variables { generate the next combination; replace the variables by their values; evaluate the formula by traversing the tree it points to in postorder; if (formula.rootvalue()) {cout << combination; return;} } Cout << “no satisfiable combination”;

  36. Threaded Binary Tree • Threading Rules • A 0 RightChild field at node p is replaced by a pointer to the node that would be visited after p when traversing the tree in inorder. That is, it is replaced by the inorder successor of p. • A 0 LeftChild link at node p is replaced by a pointer to the node that immediately precedes node p in inorder (i.e., it is replaced by the inorder predecessor of p).

  37. Threaded Tree A B C D E F G H I Inorder sequence: H, D, I, B, E, A, F, C, G

  38. Threads • To distinguish between normal pointers and threads, two boolean fields, LeftThread and RightThread, are added to the record in memory representation. • t->LeftChild = TRUE => t->LeftChild is a thread • t->LeftChild = FALSE => t->LeftChild is a pointer to the left child.

  39. Threads (Cont.) • To avoid dangling threads, a head node is used in representing a binary tree. • The original tree becomes the left subtree of the head node. • Empty Binary Tree LeftThread LeftChild RightChild RightThread data TRUE FALSE

  40. D f f Memory Representation of a Threaded Tree - f f A f f B f f B f f t E t f D f t E t H t I t t t

More Related