Binary Tree
Definition: A binary tree T is a finite set of nodes with the following properties: Either the set is empty, ; or The set consists of a root, r , and exactly two distinct binary trees and , . The tree is called the left subtree of T , and the tree is called the right subtree of T . They are considered as Ordered subtrees. Level i has 2 i nodes. In a tree of height h, Leaves are level at h. No of leave are 2 h. No of internal nodes 2 h -1. No of internal nodes = no of leaves -1 Total no of nodes = 2 h+1 -1 =n In a tree on n nodes No of leaves is (n+1)/2 height = Log 2 (n+1)/2 Tree Traversal PostOrder Traversal PreOrder Traversal InOrder Traversal PostOrder Traversal...