forked from gouthampradhan/leetcode
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathBinaryTreeLongestConsecutiveSequenceII.java
95 lines (86 loc) · 2.64 KB
/
BinaryTreeLongestConsecutiveSequenceII.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
package tree;
/**
* Created by gouthamvidyapradhan on 11/02/2018. Given a binary tree, you need to find the length of
* Longest Consecutive Path in Binary Tree.
*
* <p>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.
*
* <p>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].
*/
public class BinaryTreeLongestConsecutiveSequenceII {
public static class TreeNode {
int val;
TreeNode left;
TreeNode right;
TreeNode(int x) {
val = x;
}
}
private class Node {
int i, d;
int val;
Node(int i, int d, int val) {
this.i = i;
this.d = d;
this.val = val;
}
}
private int max = Integer.MIN_VALUE;
public static void main(String[] args) throws Exception {
TreeNode root = new TreeNode(2);
root.left = new TreeNode(1);
// root.left.left = new TreeNode(4);
root.right = new TreeNode(3);
System.out.println(new BinaryTreeLongestConsecutiveSequenceII().longestConsecutive(root));
}
public int longestConsecutive(TreeNode root) {
Node n = preorder(root);
if (n != null) {
max = Math.max(max, n.d);
max = Math.max(max, n.i);
if (n.i > 1 && n.d > 1) {
max = Math.max(max, n.d + n.i - 1);
}
}
if (max == Integer.MIN_VALUE) return 0;
return max;
}
private Node preorder(TreeNode node) {
if (node == null) return null;
Node left = preorder(node.left);
Node curr = new Node(1, 1, node.val);
if (left != null) {
max = Math.max(max, left.d);
max = Math.max(max, left.i);
if (left.val == node.val + 1) {
curr.d = left.d + 1;
curr.i = 1;
} else if (left.val == node.val - 1) {
curr.i = left.i + 1;
curr.d = 1;
}
}
Node right = preorder(node.right);
if (right != null) {
max = Math.max(max, right.d);
max = Math.max(max, right.i);
if (right.val == node.val + 1) {
if (right.d + 1 > curr.d) {
curr.d = right.d + 1;
}
} else if (right.val == node.val - 1) {
if (right.i + 1 > curr.i) {
curr.i = right.i + 1;
}
}
}
if (curr.i > 1 && curr.d > 1) {
max = Math.max(max, curr.d + curr.i - 1);
}
return curr;
}
}