-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathAverage_of_Levels_in_Binary_Tree.cpp
45 lines (44 loc) · 1.24 KB
/
Average_of_Levels_in_Binary_Tree.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
/**
* 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 {
public:
vector<double> averageOfLevels(TreeNode* root) {
vector<double> result;
if(!root) {
return result;
}
unordered_map<int, long long> sum;
unordered_map<int, int> nodeCount;
queue<pair<TreeNode*, int>> Q;
int level = 0;
Q.push({root, level});
while(!Q.empty()) {
TreeNode* curr = Q.front().first;
int currLevel = Q.front().second;
Q.pop();
if(currLevel > level) {
double avg = (double) sum[level] / nodeCount[level];
result.push_back(avg);
level = currLevel;
}
sum[level] += curr->val;
nodeCount[level]++;
if(curr->left) {
Q.push({curr->left, currLevel + 1});
}
if(curr->right) {
Q.push({curr->right, currLevel + 1});
}
}
double avg = (double) sum[level] / nodeCount[level];
result.push_back(avg);
return result;
}
};