Showing posts from October, 2013

Find size of binary tree in Java - Iterative and recursive

Topics covered 1. Find size of binary tree - Recursive 2. Find size of binary tree - Iterative 3. Complete sample program- recursive and iterative Size of binary tree is total number of nodes in the given binary tree.For the following binary tree siz…

Find number of full and half nodes in binary tree

Topics covered 1. # of full and half nodes of binary tree - Iterative 2. # of full and half nodes of binary tree - Recursive 3. Complete sample program Problem Statement :- Find Number of full-nodes in given binary tree. Full-node of binary …

Load More
That is All