-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathCount_Complete_Tree_Nodes.cpp
66 lines (62 loc) · 1.66 KB
/
Count_Complete_Tree_Nodes.cpp
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
/**
* Definition for a binary tree node.
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode(int x) : val(x), left(NULL), right(NULL) {}
* };
*/
// TLE
/*
class Solution {
public:
int countNodes(TreeNode* root) {
if(!root) return 0;
int left = countNodes(root->left);
int right = countNodes(root->right);
return 1 + left + right;
}
};
*/
/**
* Definition for a binary tree node.
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode(int x) : val(x), left(NULL), right(NULL) {}
* };
*/
class Solution {
int getCompleteNodesCount(TreeNode* root, int& height) {
int level = 0;
TreeNode* node = root;
while(node->right) {
++level;
node = node->right;
}
height = level + 1;
return (pow(2, height) - 1);
}
int getInCompleteNodesCount(TreeNode* root, int depth, const int height, bool& done) {
if(done) { return 0; }
if(depth == height) {
if(!root->left or !root->right) {
done = true;
}
return ((root->left != nullptr) + (root->right != nullptr));
}
return getInCompleteNodesCount(root->left, depth + 1, height, done) +
getInCompleteNodesCount(root->right, depth + 1, height, done);
}
public:
int countNodes(TreeNode* root) {
if(!root) return 0;
int height;
int result = getCompleteNodesCount(root, height);
bool done = false;
result += getInCompleteNodesCount(root, 1, height, done);
return result;
}
};