1 / 23

Abstract Data Type for Binary Trees

Simulates a hierarchical tree structure with no cycles. Each node has a value and references to its children. Represents minimum and maximum number of nodes in a binary tree, as well as various properties and representations.

Télécharger la présentation

Abstract Data Type for Binary Trees

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. Trees • Another Abstract Data Type (ADT) • Simulates a hierarchical tree structure • Has no cycles • Two vertices are connected by exactly one path • Recursively defined as a collection of nodes, each node has a value and a list of references to the children • No reference is duplicated • None points to root

  2. Tree

  3. Not Tree

  4. Binary Tree Properties & Representation

  5. Minimum Number Of Nodes • Minimum number of nodes in a binary tree whose height is h. • At least one node at each of first h levels. minimum number of nodes is h

  6. Maximum Number Of Nodes • All possible nodes at first h levels are present. Maximum number of nodes = 1 + 2 + 4 + 8 + … + 2h-1 = 2h - 1

  7. Number Of Nodes & Height • Let n be the number of nodes in a binary tree whose height is h. • h <= n <= 2h – 1 • log2(n+1) <= h <= n

  8. Height 4 full binary tree. Full Binary Tree • A full binary tree of a given height h has 2h – 1 nodes.

  9. Numbering Nodes In A Full Binary Tree • Number the nodes 1 through 2h – 1. • Number by levels from top to bottom. • Within a level number from left to right. 1 2 3 4 6 5 7 8 9 10 11 12 13 14 15

  10. 1 2 3 4 6 5 7 8 9 10 11 12 13 14 15 Node Number Properties • Parent of node i is node i / 2, unless i = 1. • Node 1 is the root and has no parent.

  11. 1 2 3 4 6 5 7 8 9 10 11 12 13 14 15 Node Number Properties • Left child of node i is node 2i, unless 2i > n, where n is the number of nodes. • If 2i > n, node i has no left child.

  12. 1 2 3 4 6 5 7 8 9 10 11 12 13 14 15 Node Number Properties • Right child of node i is node 2i+1, unless 2i+1 > n, where n is the number of nodes. • If 2i+1 > n, node i has no right child.

  13. Complete Binary Tree With n Nodes • Start with a full binary tree that has at least n nodes. • Number the nodes as described earlier. • The binary tree defined by the nodes numbered 1 through n is the unique n node complete binary tree. • In a complete binary tree every level, except possibly the last, is completely filled, and all nodes in the last level are as far left as possible.

  14. 1 2 3 4 6 5 7 8 9 10 11 12 13 14 15 Example • Complete binary tree with 10 nodes.

  15. Binary Tree Representation • Array representation. • Linked representation.

  16. b 1 a 2 3 c 4 5 6 7 d f e g 8 9 10 h i j tree[] 0 5 10 Array Representation • Number the nodes using the numbering scheme for a full binary tree. The node that is numbered i is stored in tree[i]. a b c d e f g h i j

  17. 1 a 3 b 15 7 d c tree[] a - b - - - c - - - - - - - d 0 5 10 15 Right-Skewed Binary Tree • An n node binary tree needs an array whose length is between n+1 and 2n.

  18. Linked Representation • Each binary tree node is represented as an object whose data type is binaryTreeNode. • The space required by an n node binary tree is n * (space required by one node).

  19. The Struct binaryTreeNode template <class T> struct binaryTreeNode { T element; binaryTreeNode<T> *leftChild, *rightChild; binaryTreeNode() {leftChild = rightChild = NULL;} // other constructors come here };

  20. root a c b d f e g h leftChild element rightChild Linked Representation Example

  21. Some Binary Tree Operations • Determine the height. • Determine the number of nodes. • Make a clone. • Determine if two binary trees are clones. • Display the binary tree. • Evaluate the arithmetic expression represented by a binary tree. • Obtain the infix form of an expression. • Obtain the prefix form of an expression. • Obtain the postfix form of an expression.

  22. Binary Tree Traversal • Many binary tree operations are done by performing a traversal of the binary tree. • In a traversal, each element of the binary tree is visited exactly once. • During the visit of an element, all actions (make a clone, display, evaluate the operator, etc.) with respect to this element are taken.

  23. Binary Tree Traversal Methods • Preorder ( V L R ) • Inorder ( L V R ) • Postorder ( L R V ) • Level order

More Related