-
Notifications
You must be signed in to change notification settings - Fork 156
/
Copy pathbinary-tree-longest-consecutive-sequence-ii.js
76 lines (66 loc) · 1.59 KB
/
binary-tree-longest-consecutive-sequence-ii.js
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
72
73
74
75
76
/**
* Given a binary tree, you need to find the length of Longest Consecutive Path in Binary Tree.
*
* Especially, this path can be either increasing or decreasing. For example, [1,2,3,4] and [4,3,2,1]
* are both considered valid, but the path [1,2,4,3] is not valid. On the other hand, the path can be
* in the child-Parent-child order, where not necessarily be parent-child order.
*
* Example 1:
* Input:
*
* 1
* / \
* 2 3
*
* Output: 2
* Explanation: The longest consecutive path is [1, 2] or [2, 1].
*
* Example 2:
* Input:
*
* 2
* / \
* 1 3
*
* Output: 3
* Explanation: The longest consecutive path is [1, 2, 3] or [3, 2, 1].
*
* Note: All the values of tree nodes are in the range of [-1e7, 1e7].
*/
/**
* @param {TreeNode} root
* @return {number}
*/
const longestConsecutive = root => {
const longestPath = root => {
if (!root) {
return [0, 0];
}
let inr = 1;
let dcr = 1;
if (root.left) {
const l = longestPath(root.left);
if (root.val === root.left.val + 1) {
dcr = l[1] + 1;
}
if (root.val === root.left.val - 1) {
inr = l[0] + 1;
}
}
if (root.right) {
const r = longestPath(root.right);
if (root.val === root.right.val + 1) {
dcr = Math.max(dcr, r[1] + 1);
}
if (root.val === root.right.val - 1) {
inr = Math.max(inr, r[0] + 1);
}
}
maxval = Math.max(maxval, dcr + inr - 1);
return [inr, dcr];
};
let maxval = 0;
longestPath(root);
return maxval;
};
export default longestConsecutive;