Maximum Path Sum Binary Tree I
Medium
Given a binary tree in which each node contains an integer number. Find the maximum possible sum from one leaf node to another leaf node. If there is no such path available, return Integer.MIN_VALUE(Java)/INT_MIN (C++).
Examples
-15
/ \
2 11
/ \
6 14
The maximum path sum is 6 + 11 + 14 = 31.
Solution:
To Parent: return root.key + max(left path, right path)
At Current: update globalMax against root.key + left path + right path
From Children: largest sum left path and largest sum right path
Mistakes Made:
problem constraint states a valid path must be from one leaf node to another. This means that we can only update the global maximum if we have both a left and right child
Last updated
Was this helpful?