-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy path687.Longest-Univalue-Path.java
47 lines (40 loc) · 1.06 KB
/
687.Longest-Univalue-Path.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
// https://leetcode.com/problems/max-area-of-island/
//
// algorithms
// Easy (34.58%)
// Total Accepted: 68,755
// Total Submissions: 198,827
/**
* Definition for a binary tree node. public class TreeNode { int val; TreeNode
* left; TreeNode right; TreeNode(int x) { val = x; } }
*/
class Solution {
static int res;
public int longestUnivaluePath(TreeNode root) {
res = 1;
recursive(root);
return res - 1;
}
public int recursive(TreeNode node) {
if (node == null) {
return 0;
}
int left = recursive(node.left);
int right = recursive(node.right);
int resTmp = 1;
if (node.left != null && node.left.val == node.val) {
resTmp += left;
left++;
} else {
left = 0;
}
if (node.right != null && node.right.val == node.val) {
resTmp += right;
right++;
} else {
right = 0;
}
res = Math.max(resTmp, res);
return Math.max(1, Math.max(left, right));
}
}