forked from fishercoder1534/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
_687.java
62 lines (52 loc) · 1.75 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
package com.fishercoder.solutions;
import com.fishercoder.common.classes.TreeNode;
/**
* 687. Longest Univalue Path
*
* Given a binary tree, find the length of the longest path where each node in the path has the same value.
* This path may or may not pass through the root.
Note: The length of path between two nodes is represented by the number of edges between them.
Example 1:
Input:
5
/ \
4 5
/ \ \
1 1 5
Output:
2
Example 2:
Input:
1
/ \
4 5
/ \ \
4 4 5
Output:
2
Note: The given binary tree has not more than 10000 nodes. The height of the tree is not more than 1000.
*/
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);
}
}
}