-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcompletetree_insert.cpp
54 lines (51 loc) · 1.29 KB
/
completetree_insert.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
/**
* Definition for a binary tree node.
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode(int x) : val(x), left(NULL), right(NULL) {}
* };
*/
class CBTInserter {
public:
TreeNode *root_ptr;
CBTInserter(TreeNode* root) {
root_ptr = root;
}
int insert(int v) {
TreeNode *curr, *neo;
neo = new TreeNode(v);
queue<TreeNode *> Q;
Q.push(root_ptr);
int i, s;
while (!Q.empty()) {
s = Q.size();
for (i = 0; i < s; i++) {
curr = Q.front();
Q.pop();
if (curr->left == NULL) {
curr->left = neo;
return curr->val;
}
else
Q.push(curr->left);
if (curr->right == NULL) {
curr->right = neo;
return curr->val;
}
else
Q.push(curr->right);
}
}
}
TreeNode* get_root() {
return root_ptr;
}
};
/**
* Your CBTInserter object will be instantiated and called as such:
* CBTInserter* obj = new CBTInserter(root);
* int param_1 = obj->insert(v);
* TreeNode* param_2 = obj->get_root();
*/