1 / 22

HOME

HOME. NEXT. Subject Name : Data Structure Using C Unit Title : Trees. PREVIOUS. NEXT. Trees. Definition of Tree Terminologies Type of Trees Complete Binary Tree Full/Strictly Binary Tree Binary Search Tree Threaded Binary Tree Red Black Tree B Tree [Balance Tree] AVL Tree

murphy-rice
Download Presentation

HOME

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. HOME NEXT Subject Name : Data Structure Using C Unit Title : Trees

  2. PREVIOUS NEXT Trees • Definition of Tree • Terminologies • Type of Trees • Complete Binary Tree • Full/Strictly Binary Tree • Binary Search Tree • Threaded Binary Tree • Red Black Tree • B Tree [Balance Tree] • AVL Tree • Binary Tree Traversals • Application of Trees • Class summary

  3. Definition of Tree : A general Tree T is a finite nonempty set of elements having unique connection between any pair of vertices. The set of elements are called vertices and connections are called edges. Trees HOME NEXT PREVIOUS A C B E D G F Tree T

  4. Trees HOME NEXT PREVIOUS • Terminologies: Grand Parent edge root A parent Internal node B E F child leaf C D G H General Tree

  5. Trees HOME NEXT PREVIOUS • Terminologies: • Vertex: The vertex is the set of non empty elements with some value or weight. The plural form of vertex is vertices • Edge: The connectivity between two edges called edge • Root: The root is a special type of vertex having no parents • Level of a vertex: The level of a vertex is the measured as the distance from the root and root is considered as the level 1. • Degree of a vertex: The number of edges connected to that vertex

  6. Trees HOME NEXT PREVIOUS • Type of Trees: • Binary Tree • Complete Binary Tree • Full/Strict Binary Tree • Binary Search Tree • Threaded Binary Tree • Red Black Tree • B - Tree • AVL Tree

  7. Trees HOME NEXT PREVIOUS • Binary Tree • A binary tree T is defined as a finite set of elements, called nodes such that • T is empty, called NULL tree or empty tree • T contains a distinguished node R, called root of T and the remaining nodes of T form an ordered pair of disjoint binary tree T1 and T2. • The node contain max two children • Examples:

  8. Trees A HOME NEXT PREVIOUS B C E D F G K J I H M O L N • Complete Binary Tree • A full binary tree in which the number of nodes at any level i is 2i-1, then the tree is said to be a complete binary tree. The complete binary tree is given below. • In a complete binary tree, the total number of nodes at level 0 is 1 i.e., 2° • Number of nodes at level 1 is 2 i.e., 21 • Number of nodes at level 2 is 4 i.e., 22 • Total number of nodes - • = 2° + 21 + 22 + ………….2d • = 2d+1- 1

  9. Trees HOME NEXT PREVIOUS A B C E D F G • Full/Strictly Binary Tree • If the degree of every node in a tree is either 0 or 2, then the tree is said to be full/strictly binary tree i.e., each node can have maximum two children or empty left and empty right child. • Examples:

  10. Trees HOME NEXT PREVIOUS • Binary Search Tree • A binary tree T is called a binary search tree or binary sorted tree if each node N of Tree has the following properties: • The value at N is grater than every value in the left sub tree of N and is less than every value in the right sub tree of N. No duplicate value is available in Binary Search Tree.

  11. Trees HOME NEXT PREVIOUS • Threaded Binary Tree • A binary tree is threaded by making all right child pointers that would normally be null point to the inorder successor of the node, and all left child pointers that would normally be null point to the inorder predecessor of the node.

  12. Trees HOME NEXT PREVIOUS • Red Black Tree • A red-black tree is a binary search tree where each node has a color attribute, the value of which is either red or black. In addition to the ordinary requirements imposed on binary search trees, the following additional requirements of any valid red-black tree apply. • - A node is either red or black. • - The root is black. (This rule is used in some definitions and not others. Since the root can always be changed from red to black but not necessarily vice-versa this rule has little effect on analysis.) • - All leaves are black, even when the parent is black (The leaves are the null children.) • - Both children of every red node are black.

  13. Trees HOME NEXT PREVIOUS - Every simple path from a node to a descendant leaf contains the same number of black nodes, either counting or not counting the null black nodes. (Counting or not counting the null black nodes does not affect the structure as long as the choice is used consistently.)

  14. Trees HOME NEXT PREVIOUS • B Tree [Balance Tree] • Unlike a binary-tree, each node of a B-Tree may have a variable number of keys and children. The keys are stored in non-decreasing order. Each key has an associated child that is the root of a sub tree containing all nodes with keys less than or equal to the key but greater than the preceding key. A node also has an additional rightmost child that is the root for a sub tree containing all keys greater than any keys in the node. • The order of B Tree implies maximum number of values can be added into a single node. • If the order is 3 then maximum 3 values can be added and 4 links.

  15. Trees HOME NEXT PREVIOUS Example 1: Detail Diagram Example 2: Simple Diagram

  16. Trees HOME NEXT PREVIOUS • AVL Tree • The AVL tree is named after its two inventors, G.M. Adelson-Velsky and E.M. Landis, who published it in their 1962 paper "An algorithm for the organization of information“. It is the special types of Balanced Binary Search Tree. There is the Balanced Factor (BF) that must be -1, 0 or +1 for each node. • Balanced Factor(BF) = Left Height – Right Height -1 20 -1 10 30 +1 +1 0 40 25 0 5 0 20

  17. Trees HOME NEXT PREVIOUS • Binary Tree Traversals: • Traversing is the most common operation that can be performed on trees. In the traversal technique each node in the tree is processed or visited exactly once systematically one after the other. • The different traversal techniques are there. Each traversal technique can be expressed recursively. • There are three types of tree traversals • Preorder • Inorder • Postorder

  18. Trees HOME NEXT PREVIOUS • Preorder [Root – Left – Right ] • The preorder traversal of a binary tree can be recursively defined as follows • - Process the root Node [N] • - Traverse the Left subtree in preorder[L] • - Traverse the Right subtree in preorder [R] A C B Preorder Sequence : A B D F C E G E D G F

  19. Trees HOME NEXT PREVIOUS • Inorder [Left – Root - Right ] • The preorder traversal of a binary tree can be recursively defined as follows • - Traverse the Left subtree in preorder[L] • - Process the root Node [N] • - Traverse the Right subtree in preorder [R] A C B Inorder Sequence : F D B A E G C E D G F

  20. Trees HOME NEXT PREVIOUS • Postorder [Left - Right – Root] • The preorder traversal of a binary tree can be recursively defined as follows • - Traverse the Left subtree in preorder[L] • - Traverse the Right subtree in preorder [R] • - Process the root Node [N] A C B Postorder Sequence : F D B G E C A E D G F

  21. Trees HOME NEXT PREVIOUS • Application of Trees: • Trees are often used in implementing games, particularly “board” games • • node represents a position in the board • • branches from a node represent all the possible moves from that position • • the children represent the new positions • Ordered binary trees can be used to represent Expression Evaluation and evaluate arithmetic expressions • • if a node is a leaf, the element in it specifies the value • • if it is not a leaf, evaluate the children and combine them according to the operation specified by the element

  22. Class summary HOME PREVIOUS • Definition of Tree • Terminologies • Type of Trees • Complete Binary Tree • Full/Strictly Binary Tree • Binary Search Tree • Threaded Binary Tree • Red Black Tree • B Tree [Balance Tree] • AVL Tree • Binary Tree Traversals • Application of Trees

More Related