This post is completed by 2 users
|
Add to List |
Get the Sum of all left leaves in a Binary tree
Objective: Given a binary tree, find the sum of all the nodes which are left as well as leaves nodes.
Example:

Approach:
- The approach is quite simple.
- Do the inorder traversal
- check if node if the left child and leaf node.
- If yes then add it to the sum.
- See the code for more understanding.
Code:
Output:
Sum of left leaves: 21
Also Read: