-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathCountCompleteTreeNodes.java
48 lines (41 loc) · 1.3 KB
/
CountCompleteTreeNodes.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
// https://leetcode.com/problems/count-complete-tree-nodes
// T: O(log(n) ^ 2)
// S: O(log(n))
public class CountCompleteTreeNodes {
public int countNodes(TreeNode root) {
if (root == null) {
return 0;
}
final int depth = depthTree(root) - 1;
if (depth == 0) {
return 1;
}
int left = 0, right = (int) Math.pow(2, depth) - 1, middle;
while (left <= right) {
middle = left + (right - left) / 2;
if (exists(root, depth, middle)) left = middle + 1;
else right = middle - 1;
}
return (int) Math.pow(2, depth) - 1 + left;
}
private static boolean exists(TreeNode root, int depth, int index) {
TreeNode current = root;
int value = -1;
for (int i = 0 ; i < depth ; i++) {
final int middle = (int) Math.pow(2, depth - 1 - i);
if (index > value + middle) {
current = current.right;
value += middle;
} else {
current = current.left;
}
}
return current != null;
}
private static int depthTree(TreeNode root) {
if (root == null) {
return 0;
}
return 1 + Math.max(depthTree(root.left), depthTree(root.right));
}
}