-
Notifications
You must be signed in to change notification settings - Fork 0
/
Binary Tree Longest Consecutive Sequence.java
50 lines (40 loc) · 1.22 KB
/
Binary Tree Longest Consecutive Sequence.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
/*
Given a binary tree, find the length of the longest consecutive sequence path.
The path refers to any sequence of nodes from some starting node to any node in the tree along the parent-child connections.
The longest consecutive path need to be from parent to child (cannot be the reverse).
Link: https://leetcode.com/problemset/algorithms/
Example:
1
\
3
/ \
2 4
\
5
Longest consecutive sequence path is 3-4-5, so return 3.
2
\
3
/
2
/
1
Longest consecutive sequence path is 2-3,not 3-2-1, so return 2.
Solution: None
Source: https://segmentfault.com/a/1190000003957798
*/
public class Solution {
public int longestConsecutive(TreeNode root) {
if (root == null) {
return 0;
}
return findLongest(root, 0, root.val - 1);
}
private int findLongest(TreeNode root, int length, int preVal){
if (root == null) {
return length;
}
int currLen = preVal + 1 == root.val ? length + 1 : 1;
return Math.max(currLen, Math.max(findLongest(root.left, currLen, root.val), findLongest(root.right, currLen, root.val)));
}
}