-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCountNodesInCompleteBinaryTree.java
93 lines (89 loc) · 2.39 KB
/
CountNodesInCompleteBinaryTree.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
/*https://binarysearch.com/problems/Count-Nodes-in-Complete-Binary-Tree*/
/*https://leetcode.com/problems/count-complete-tree-nodes/*/
/*x*logn approach*/
import java.util.*;
/**
* public class Tree {
* int val;
* Tree left;
* Tree right;
* }
*/
class Solution {
StringBuffer path;
public int solve(Tree root) {
if (root == null) return 0;
int lh = 0;
int rh = 0;
Tree temp = root;
while (temp != null)
{
temp = temp.left;
++lh;
}
temp = root;
while (temp != null)
{
temp = temp.right;
++rh;
}
if (lh == rh) return (int)Math.pow(2,lh)-1;
temp = root;
int lHeight, rHeight;
path = new StringBuffer("");
while (temp.left != null || temp.right != null)
{
lHeight = height(temp.left);
rHeight = height(temp.right);
if (lHeight > rHeight)
{
temp = temp.left;
path.append('L');
}
else
{
temp = temp.right;
path.append('R');
}
}
int val = 2, i;
int result = 0;
for (i = path.length()-2; i >= 0; --i)
{
if (path.charAt(i) == 'R') result += val;
val *= 2;
}
if (path.charAt(path.length()-1) == 'L') ++result;
else result += 2;
return result+(int)Math.pow(2,rh)-1;
}
public int height(Tree root)
{
if (root == null) return 0;
if (root.left == null && root.right == null) return 1;
return Math.max(height(root.left),height(root.right))+1;
}
}
class Solution {
public int countNodes(TreeNode root) {
if(root == null) return 0;
if(root.left == null && root.right == null)return 1;
final int leftHigh = leftDepth(root.left);
final int rightHigh = leftDepth(root.right);
if(leftHigh > rightHigh){
return countNodes(root.left) + (int)Math.pow(2,rightHigh);
}else if(leftHigh == rightHigh){
return countNodes(root.right) + (int)Math.pow(2,leftHigh);
}else{
return 0;
}
}
private int leftDepth(TreeNode root){
int res = 0;
while(root != null){
root = root.left;
res++;
}
return res;
}
}