Given a Binary tree, count total number of non-leaf nodes in the tree
Examples:
Input :Output :2 Explanation In the above tree only two nodes 1 and 2 are non-leaf nodes
We recursively traverse the given tree. While traversing, we count non-leaf nodes in left and right subtrees and add 1 to the result.
C++
// CPP program to count total number of // non-leaf nodes in a binary tree #include <bits/stdc++.h> using namespace std; /* A binary tree node has data, pointer to left child and a pointer to right child */struct Node { int data; struct Node* left; struct Node* right; }; /* Helper function that allocates a new node with the given data and NULL left and right pointers. */struct Node* newNode(int data) { struct Node* node = new Node; node->data = data; node->left = node->right = NULL; return (node); } /* Computes the number of non-leaf nodes in a tree. */int countNonleaf(struct Node* root) { // Base cases. if (root == NULL || (root->left == NULL && root->right == NULL)) return 0; // If root is Not NULL and its one of its // child is also not NULL return 1 + countNonleaf(root->left) + countNonleaf(root->right); } /* Driver program to test size function*/int main() { struct Node* root = newNode(1); root->left = newNode(2); root->right = newNode(3); root->left->left = newNode(4); root->left->right = newNode(5); cout << countNonleaf(root); return 0; } |
chevron_right
filter_none
Java
// Java program to count total number of // non-leaf nodes in a binary tree class GfG { /* A binary tree node has data, pointer to left child and a pointer to right child */static class Node { int data; Node left; Node right; } /* Helper function that allocates a new node with the given data and NULL left and right pointers. */static Node newNode(int data) { Node node = new Node(); node.data = data; node.left = null; node.right = null; return (node); } /* Computes the number of non-leaf nodes in a tree. */static int countNonleaf(Node root) { // Base cases. if (root == null || (root.left == null && root.right == null)) return 0; // If root is Not NULL and its one of its // child is also not NULL return 1 + countNonleaf(root.left) + countNonleaf(root.right); } /* Driver program to test size function*/public static void main(String[] args) { Node root = newNode(1); root.left = newNode(2); root.right = newNode(3); root.left.left = newNode(4); root.left.right = newNode(5); System.out.println(countNonleaf(root)); } } |
chevron_right
filter_none
Python3
# Python3 program to count total number # of non-leaf nodes in a binary tree # class that allocates a new node with the #given data and None left and right pointers. class newNode: def __init__(self,data): self.data = data self.left = self.right = None # Computes the number of non-leaf # nodes in a tree. def countNonleaf(root): # Base cases. if (root == None or (root.left == None and root.right == None)): return 0 # If root is Not None and its one of # its child is also not None return (1 + countNonleaf(root.left) + countNonleaf(root.right)) # Driver Code if __name__ == '__main__': root = newNode(1) root.left = newNode(2) root.right = newNode(3) root.left.left = newNode(4) root.left.right = newNode(5) print(countNonleaf(root)) # This code is contributed by PranchalK |
chevron_right
filter_none
C#
// C# program to count total number of // non-leaf nodes in a binary tree using System; class GfG { /* A binary tree node has data, pointer to left child and a pointer to right child */ class Node { public int data; public Node left; public Node right; } /* Helper function that allocates a new node with the given data and NULL left and right pointers. */ static Node newNode(int data) { Node node = new Node(); node.data = data; node.left = null; node.right = null; return (node); } /* Computes the number of non-leaf nodes in a tree. */ static int countNonleaf(Node root) { // Base cases. if (root == null || (root.left == null && root.right == null)) return 0; // If root is Not NULL and its one of its // child is also not NULL return 1 + countNonleaf(root.left) + countNonleaf(root.right); } /* Driver code*/ public static void Main(String[] args) { Node root = newNode(1); root.left = newNode(2); root.right = newNode(3); root.left.left = newNode(4); root.left.right = newNode(5); Console.WriteLine(countNonleaf(root)); } } // This code is contributed by PrinciRaj1992 |
chevron_right
filter_none
Output:
2
Attention reader! Don’t stop learning now. Get hold of all the important DSA concepts with the DSA Self Paced Course at a student-friendly price and become industry ready.
Recommended Posts:
- Count the nodes of the tree which make a pangram when concatenated with the sub-tree nodes
- Complexity of different operations in Binary tree, Binary Search Tree and AVL tree
- Count of all prime weight nodes between given nodes in the given Tree
- Construct XOR tree by Given leaf nodes of Perfect Binary Tree
- Program to count leaf nodes in a binary tree
- Iterative program to count leaf nodes in a Binary Tree
- Count half nodes in a Binary tree (Iterative and Recursive)
- Count full nodes in a Binary tree (Iterative and Recursive)
- Count nodes with two children at level L in a Binary Tree
- Count of nodes in a Binary tree with immediate children as its factors
- Count of nodes in a Binary Tree whose child is its prime factors
- Count of nodes in a Binary Tree whose immediate children are co-prime
- Count the number of visible nodes in Binary Tree
- Count nodes from all lower levels smaller than minimum valued node of current level for every level in a Binary Tree
- Count pairs of leaf nodes in a Binary Tree which are at most K distance apart
- Count balanced nodes present in a binary tree
- Common nodes in the inorder sequence of a tree between given two nodes in O(1) space
- Maximum sub-tree sum in a Binary Tree such that the sub-tree is also a BST
- Check if a binary tree is subtree of another binary tree | Set 1
- Binary Tree to Binary Search Tree Conversion
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.


Output :2
Explanation
In the above tree only two nodes 1 and 2 are non-leaf nodes