Tree

Find number of leaf nodes in a binary tree (Java/ BFS /example)

What is leaf node in binary tree?
A node in a binary tree which do not have any child nodes is called leaf node. The leaf node do not have any children i.e. left and right reference both null. We have to count the number of leaf nodes in the binary tree. In other ways we need to find out all the nodes in the binary tree which do not have any children (both right node and left node null).
So as per our problem statement, we have to iterate over the binary tree and find the number of leaf nodes in the binary tree.

Delete all nodes of a binary tree in java (recursive/ DFS/ example)

To delete binary tree, we have to delete all the nodes in the tree. We have discussed about deleting the node in binary search tree in separate post. Before we discuss about deleting tree, we will start from very small tree, then we will use this foundation to delete the whole tree. Suppose we have tree of 3 nodes

Scroll to Top