-
Notifications
You must be signed in to change notification settings - Fork 13
/
Tree_LongestConsecutiveSequenceInBinaryTree.java
127 lines (100 loc) · 3.46 KB
/
Tree_LongestConsecutiveSequenceInBinaryTree.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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.LinkedList;
import java.util.Queue;
// https://practice.geeksforgeeks.org/problems/longest-consecutive-sequence-in-binary-tree/1
// https://www.geeksforgeeks.org/longest-consecutive-sequence-binary-tree/
// https://www.lintcode.com/problem/binary-tree-longest-consecutive-sequence/description
// https://www.interviewbit.com/problems/longest-consecutive-sequence-in-binary-tree/
// https://www.programcreek.com/2014/04/leetcode-binary-tree-longest-consecutive-sequence-java/
// https://www.interviewbit.com/help_requests/43156/
public class Tree_LongestConsecutiveSequenceInBinaryTree {
/*static int ans = -1;
public int longestConsecutive(TreeNode root) {
if(root == null) return 0;
ans = -1;
longestConsecutiveUtil(root, Integer.MAX_VALUE, 1);
return ans;
}
private static void longestConsecutiveUtil(TreeNode root, int prevVal, int currDepth) {
if(root == null) {
ans = Math.max(ans, currDepth);
return;
}
if(root.val == 1 + prevVal){
++currDepth;
ans = Math.max(ans, currDepth);
}
else
currDepth = 1;
longestConsecutiveUtil(root.left, root.val, currDepth);
longestConsecutiveUtil(root.right, root.val, currDepth);
}*/
static class Result {
int res = 0;
}
public static int longestConsecutive(Node root) {
if(root == null) return 0;
Result res = new Result();
longestConsecutiveUtil(root, 0, root.data, res);
return res.res;
}
private static void longestConsecutiveUtil(Node root, int currLength, int expected, Result res) {
if(root == null) return;
if(root.data == expected) currLength++;
else currLength = 1;
res.res = Math.max(res.res, currLength);
longestConsecutiveUtil(root.left, currLength, root.data+1, res);
longestConsecutiveUtil(root.right, currLength, root.data+1, res);
}
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int t = Integer.parseInt(br.readLine());
while(t-->0) {
String str = br.readLine().trim();
Node root = buildTree(str);
//printTree(root);
System.out.println(longestConsecutive(root));
}
}
private static Node buildTree(String str) {
if(str.length() == 0 || str.charAt(0) == 'N') return null;
String ip[] = str.split("\\s+");
Node root = new Node(Integer.parseInt(ip[0]));
Queue<Node> queue = new LinkedList<>();
queue.add(root);
int i=1;
while(queue.size() > 0 && i < ip.length) {
Node currNode = queue.poll();
String currVal = ip[i];
if(!currVal.equals("N")) {
currNode.left = new Node(Integer.parseInt(currVal));
queue.add(currNode.left);
}
i++;
if(i >= ip.length) break;
currVal = ip[i];
if(!currVal.equals("N")) {
currNode.right = new Node(Integer.parseInt(currVal));
queue.add(currNode.right);
}
i++;
}
return root;
}
static void printTree(Node root) {
if(root == null) return;
System.out.print(root.data + " ");
printTree(root.left);
printTree(root.right);
}
static class Node {
int data;
Node left, right;
Node(int data) {
this.data = data;
left = right = null;
}
}
}