Python program to construct a complete binary tree from given array.














































Python program to construct a complete binary tree from given array.



Description:
To create  a binary tree from an array, we will use level order fashion for insertion of elements in the tree.
Here is an example to make you understand clearly...
Array :-  arr =[1,2,3,4,5,6,7]  
Expected Output:       
So from this example we can see that, if parent node is at the index i in the array then the left child
of that node is at the index (2*i+1) and right child is at index(2*i+2) in the array. Using this concept, we can easily insert the left and right nodes by choosing its parent node.
We will insert the first element of array as the root of the tree at level 0 and start traversing the array and for every node  i we will insert its both child's left and right in the tree.

Program:
class newNode: def __init__(self, data): self.data = data self.left = self.right = None # Function to insert nodes in level order def levelOrderInsertion(arr, root, i, n): # Base case for recursion if i < n: temp = newNode(arr[i]) root = temp # insert left child root.left = levelOrderInsertion(arr, root.left, 2 * i + 1, n) # insert right child root.right = levelOrderInsertion(arr, root.right, 2 * i + 2, n) return root # Function to print tree nodes in # PreOrder fashion def preOrder(root): if root!=None: preOrder(root.left) preOrder(root.right) print(root.data,end=" ") # Driver Code if __name__ == '__main__': arr = [1, 2, 3, 4, 5, 6,7] n = len(arr) root = None root = levelOrderInsertion(arr, root, 0, n) preOrder(root)



Output:
4 5 2 6 7 3 1 
>>> 

More Articles of Khushboo Singh:

Name Views Likes
Python program to insert an element in binary tree. 835 20
Tokenize text using NLTK in Python. 1225 12
Python Remove multiple elements from list while Iterating. 745 22
Python How to Check if an item exists in list ? 4298 14
Python How to remove multiple elements from list ? 757 26
Python program to check if two trees are mirror of each other without using recursion. 671 19
Python program to find maximum in Binary tree. 940 19
Python Check if all elements are same using Set 726 15
Python program to find diameter of a binary tree. 1096 20
Python program to print root to leaf paths without using recursion. 852 20
Python program to find root of the tree where children id sum for every node is given. 693 23
Introduction of Python NLTK library 1376 25
Categorizing and Tagging Sentences using NLTK in Python . 1028 19
Python program to find height of a tree without using recursion. 677 16
Python program to find sum of all nodes of the given perfect binary tree. 667 19
Python program to find minimum in binary tree. 836 23
Python Check if element exist in list using list.count() function. 702 13
Python program to convert a given binary tree to doubly linked list. 894 20
Python program to find distance between two nodes of a binary tree. 1540 20
NLTK stop Words 1157 13
Python program to find largest binary search tree in a Binary Tree. 948 20
Python program to find inorder successor in binary search tree with recursion. 1218 18
Python program to convert a binary tree into doubly linked list in spiral fashion. 806 15
Python List check if element are same using all() 680 12
Python program to check if two trees are identical using recursion. 719 30
Python Find the occurrence count of an element in the tuple using count() 976 23
Python Convert two lists to a dictionary 737 19
Python program to construct a complete binary tree from given array. 1447 14
Python program to find diameter of binary tree in O(n). 882 17
Introduction to the AVL tree. 768 15
Python program to check if two trees are identical without using recursion 670 17
Python Convert a list of tuples to dictionary. 1096 24
Python program to convert a binary tree to a circular doubly link list. 659 21
Python Check if element exist in list based on own logic. 758 23
Python program to merge two binary trees by doing node sum using recursion 1019 27
Python program to check whether a given binary tree is perfect or not. 691 17
Python Check if all elements are same using list.count(). 1098 28
Python program to find an element into binary tree 636 12
Python program to find lowest common ancestor in a binary tree 1228 24

Comments