Successfully reported this slideshow.
Your SlideShare is downloading. ×
Ad
Ad
Ad
Ad
Ad
Ad
Ad
Ad
Ad
Ad
Ad

Check these out next

1 of 18 Ad

More Related Content

Slideshows for you (20)

Advertisement

Recently uploaded (20)

Advertisement

Trees

  1. 1. Trees<br />Data Structures and Algorithms<br />
  2. 2. Definition<br />Trees are used to impose a hierarchical structure on a collection of data items.<br />A tree is a set of one or more nodes T such that:<br />there is a specially designated node called a root<br />The remaining nodes are partitioned into n disjointed set of nodes T1, T2,…,Tn, each of which is a tree.<br />
  3. 3. Basic Terminology<br />Degree of a Node of a Tree<br /> The degree of a node of a tree is the number of subtrees having this node as a root. In other words, the degree is the number of descendants of a node. If the degree is zero, it is called a terminal or leaf node of a tree.<br />Degree of a Tree<br /> The degree of a tree is defined as the maximum of degree of the nodes of the tree, that is, degree of tree = max (degree(node i) for I = 1 to n)<br />Level of a Node<br /> We define the level of the node by taking the level of the root node as 1, and incrementing it by 1 as we move from the root towards the subtrees. So the level of all the descendants of the root nodes will be 2. The level of their descendants will be 3, and so on. We then define the depth of the tree to be the maximum value of the level of the node of the tree.<br />
  4. 4. Binary Tree<br />A binary tree is a special case of tree as defined in the preceding section, in which no node of a tree can have a degree of more than 2. Therefore, a binary tree is a set of zero or more nodes T such that:<br />there is a specially designated node called the root of the tree<br />the remaining nodes are partitioned into two disjointed sets, T1 and T2, each of which is a binary tree. T1 is called the left subtree and T2 is called right subtree, or vice-versa<br />
  5. 5. Skewed Binary Tree<br />
  6. 6. Full binary tree<br />A full binary tree is a binary of depth k having 2k − 1 nodes. If it has < 2k − 1, it is not a full binary tree. For example, for k = 3, the number of nodes = 2k − 1 = 23 − 1 = 8 − 1 = 7. <br />A full binary tree with depth k = 3 is shown <br />
  7. 7. Complete binary tree<br />A complete binary tree of depth k is a tree with n nodes in which these n nodes can be numbered sequentially from 1 to n, as if it would have been the first n nodes in a full binary tree of depth k.<br />A complete binary tree with depth k = 3 is shown<br />
  8. 8. Representation of Binary Tree<br />BT are represented using 2 ways<br />Array representation<br />Linked list representation<br />
  9. 9. 1. Array Representation<br />we can map node i to the ith index in the array, and the parent of node i will get mapped at an index i/2, whereas the left child of node i gets mapped at an index 2i and the right child gets mapped at an index 2i + 1<br />
  10. 10. 2. Linked List representation<br />we can use a linked representation, in which every node is represented as a structure with three fields: one for holding data, one for linking it with the left subtree, and the third for linking it with right subtree<br />
  11. 11. Traversal of Binary Tree<br />There are 6 ways of traversal of binary tree<br />LDR<br />LRD<br />DLR<br />RDL<br />RLD<br />DRL<br />Where,<br />L stands for traversing the left subtree, <br />R stands for traversing the right subtree,<br />D stands for processing the data of the node<br />
  12. 12. The order LDR is called as inorder;<br />the order LRD is called as postorder;<br />the order DLR is called as preorder. <br /> The remaining three orders are not used.<br />
  13. 13. Binary Search Tree<br />A binary search tree is a binary tree that may be empty, and every node must contain an identifier. An identifier of any node in the left subtree is less than the identifier of the root. An identifier of any node in the right subtree is greater than the identifier of the root. Both the left subtree and right subtree are binary search trees<br />
  14. 14. DELETION OF A NODE FROM BINARY SEARCH TREE<br />Deletion of a node with two children<br />Deletion of a Node with One Child<br />Deletion of a Node with No Child<br />
  15. 15. Deletion of a node with two children<br />
  16. 16. Deletion of a Node with One Child<br />
  17. 17. Deletion of a Node with No Child<br />
  18. 18. Find or request more at http://amitbiswal.blogspot.com<br />Thank you<br />

×