20. Sum of nodes on the longest path from root to leaf node
The problem can be found at the following link: Question Link
My Approach
Implement Depth First Search (DFS) to traverse the binary tree.
At each node, calculate the sum and length of the longest path from the root to a leaf node.
Maintain a pair of integers representing the sum and length of the longest path encountered so far.
Compare the longest paths from the left and right subtrees. If they have the same length, choose the path with the maximum sum.
Update the sum and length of the current longest path based on the chosen subtree.
Recursively compute the sum and length for each subtree.
Finally, return the sum of nodes along the longest path from the root to any leaf node.
Time and Auxiliary Space Complexity
Time Complexity: The time complexity of this approach is
O(N)
, where N is the number of nodes in the binary tree.Auxiliary Space Complexity: The auxiliary space complexity is
O(H)
, where H is the height of the binary tree
Code (C++)
Contribution and Support
For discussions, questions, or doubts related to this solution, please visit our discussion section. We welcome your input and aim to foster a collaborative learning environment.
If you find this solution helpful, consider supporting us by giving a ⭐ star to the getlost01/gfg-potd repository.
Last updated