C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
Binary TreeThe Binary tree means that the node can have maximum two children. Here, binary name itself suggests that 'two'; therefore, each node can have either 0, 1 or 2 children. Let's understand the binary tree through an example. The above tree is a binary tree because each node contains the utmost two children. The logical representation of the above tree is given below: In the above tree, node 1 contains two pointers, i.e., left and a right pointer pointing to the left and right node respectively. The node 2 contains both the nodes (left and right node); therefore, it has two pointers (left and right). The nodes 3, 5 and 6 are the leaf nodes, so all these nodes contain NULL pointer on both left and right parts. Properties of Binary Tree
If there are 'n' number of nodes in the binary tree. The minimum height can be computed as: As we know that, n = 2h+1 -1 n+1 = 2h+1 Taking log on both the sides, log2(n+1) = log2(2h+1) log2(n+1) = h+1 h = log2(n+1) - 1 The maximum height can be computed as: As we know that, n = h+1 h= n-1 Types of Binary TreeThere are four types of Binary tree:
1. Full/ proper/ strict Binary tree The full binary tree is also known as a strict binary tree. The tree can only be considered as the full binary tree if each node must contain either 0 or 2 children. The full binary tree can also be defined as the tree in which each node must contain 2 children except the leaf nodes. Let's look at the simple example of the Full Binary tree. In the above tree, we can observe that each node is either containing zero or two children; therefore, it is a Full Binary tree. Properties of Full Binary Tree
n= 2*h - 1 n+1 = 2*h h = n+1/2 Complete Binary Tree The complete binary tree is a tree in which all the nodes are completely filled except the last level. In the last level, all the nodes must be as left as possible. In a complete binary tree, the nodes should be added from the left. Let's create a complete binary tree. The above tree is a complete binary tree because all the nodes are completely filled, and all the nodes in the last level are added at the left first. Properties of Complete Binary Tree
Perfect Binary Tree A tree is a perfect binary tree if all the internal nodes have 2 children, and all the leaf nodes are at the same level. Let's look at a simple example of a perfect binary tree. The below tree is not a perfect binary tree because all the leaf nodes are not at the same level. Note: All the perfect binary trees are the complete binary trees as well as the full binary tree, but vice versa is not true, i.e., all complete binary trees and full binary trees are the perfect binary trees.Degenerate Binary TreeThe degenerate binary tree is a tree in which all the internal nodes have only one children. Let's understand the Degenerate binary tree through examples. The above tree is a degenerate binary tree because all the nodes have only one child. It is also known as a right-skewed tree as all the nodes have a right child only. The above tree is also a degenerate binary tree because all the nodes have only one child. It is also known as a left-skewed tree as all the nodes have a left child only. Balanced Binary Tree The balanced binary tree is a tree in which both the left and right trees differ by atmost 1. For example, AVL and Red-Black trees are balanced binary tree. Let's understand the balanced binary tree through examples. The above tree is a balanced binary tree because the difference between the left subtree and right subtree is zero. The above tree is not a balanced binary tree because the difference between the left subtree and the right subtree is greater than 1. Binary Tree ImplementationA Binary tree is implemented with the help of pointers. The first node in the tree is represented by the root pointer. Each node in the tree consists of three parts, i.e., data, left pointer and right pointer. To create a binary tree, we first need to create the node. We will create the node of user-defined as shown below: struct node { int data, struct node *left, *right; } In the above structure, data is the value, left pointer contains the address of the left node, and right pointer contains the address of the right node. Binary Tree program in C #include The above code is calling the create() function recursively and creating new node on each recursive call. When all the nodes are created, then it forms a binary tree structure. The process of visiting the nodes is known as tree traversal. There are three types traversals used to visit a node:
Next TopicBinary Search Tree
|