forked from fishercoder1534/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_687.java
29 lines (26 loc) · 1.19 KB
/
_687.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package com.fishercoder.solutions;
import com.fishercoder.common.classes.TreeNode;
public class _687 {
public static class Solution1 {
/**
* Use a one element array to pass in and out is a common technique for handling tree questions.
*/
public int longestUnivaluePath(TreeNode root) {
int[] result = new int[1];
if (root != null) {
dfs(root, result);
}
return result[0];
}
// calculate longest univalue path from root to leaves
// In addition, the maximum univalue path cross the root node is calculated and then global maximum is udpated.
private int dfs(TreeNode root, int[] result) {
int leftPath = root.left == null ? 0 : dfs(root.left, result);
int rightPath = root.right == null ? 0 : dfs(root.right, result);
int leftResult = (root.left != null && root.left.val == root.val) ? leftPath + 1 : 0;
int rightResult = (root.right != null && root.right.val == root.val) ? rightPath + 1 : 0;
result[0] = Math.max(result[0], leftResult + rightResult);
return Math.max(leftResult, rightResult);
}
}
}