-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path687. Longest Univalue Path
71 lines (56 loc) · 1.44 KB
/
687. Longest Univalue Path
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
63
64
65
66
67
68
69
70
71
/*
// 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
*/
/**
* Definition for a binary tree node.
* public class TreeNode {
* int val;
* TreeNode left;
* TreeNode right;
* TreeNode(int x) { val = x; }
* }
*/
class Solution {
int result;
public int longestUnivaluePath(TreeNode root) {
result = 0;
arrowLength(root);
return result;
}
public int arrowLength(TreeNode node) {
if (node == null) {
return 0;
}
int left = arrowLength(node.left);
int right = arrowLength(node.right);
int arrowLeft = 0, arrowRight = 0;
if (node.left != null && node.left.val == node.val) {
arrowLeft += left + 1;
}
if (node.right != null && node.right.val == node.val) {
arrowRight += right + 1;
}
result = Math.max(result, arrowLeft + arrowRight);
return Math.max(arrowLeft, arrowRight);
}
}