124 Binary Tree Maximum Path Sum
124. Binary Tree Maximum Path Sum
1. Question
1
/ \
2 32. Implementation
class Solution {
public int maxPathSum(TreeNode root) {
int[] max = new int[1];
max[0] = Integer.MIN_VALUE;
findMaxPathSum(root, max);
return max[0];
}
public int findMaxPathSum(TreeNode node, int[] max) {
if (node == null) {
return 0;
}
int leftPathSum = Math.max(0, findMaxPathSum(node.left, max));
int rightPathSum = Math.max(0, findMaxPathSum(node.right, max));
max[0] = Math.max(max[0], node.val + leftPathSum + rightPathSum);
return node.val + Math.max(leftPathSum, rightPathSum);
}
}3. Time & Space Complexity
Last updated