Binary graph algorithms to find height of binary tree and to check whether the given binary tree is full binary or not

This commit is contained in:
Shivam Arora 2018-10-31 17:28:49 +05:30
parent 1a5df6bc46
commit 11d0d641ad

View File

@ -0,0 +1,47 @@
class Node:
def __init__(self, data):
self.data = data
self.left = None
self.right = None
def depth_of_tree(tree):
if tree is None:
return 0
else:
depth_l_tree = depth_of_tree(tree.left)
depth_r_tree = depth_of_tree(tree.right)
if depth_l_tree > depth_r_tree:
return 1 + depth_l_tree
else:
return 1 + depth_r_tree
def is_full_binary_tree(tree):
if tree is None:
return True
if (tree.left is None) and (tree.right is None):
return True
if (tree.left is not None) and (tree.right is not None):
return (is_full_binary_tree(tree.left) and is_full_binary_tree(tree.right))
else:
return False
def main():
tree = Node(1)
tree.left = Node(2)
tree.right = Node(3)
tree.left.left = Node(4)
tree.left.right = Node(5)
tree.left.right.left = Node(6)
tree.right.left = Node(7)
tree.right.left.left = Node(8)
tree.right.left.left.right = Node(9)
print(is_full_binary_tree(tree))
print(depth_of_tree(tree))
if __name__ == '__main__':
main()