forked from zhuli19901106/leetcode-zhuli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaverage-of-levels-in-binary-tree_1_AC.cpp
62 lines (54 loc) · 1.37 KB
/
average-of-levels-in-binary-tree_1_AC.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
/**
* Definition for a binary tree node.
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode(int x) : val(x), left(NULL), right(NULL) {}
* };
*/
#include <queue>
#include <utility>
using std::make_pair;
using std::queue;
using std::pair;
class Solution {
public:
vector<double> averageOfLevels(TreeNode* root) {
queue<pair<int, TreeNode *>> q;
vector<double> res;
vector<int> c;
if (root == NULL) {
return res;
}
pair<int, TreeNode *> p;
int dep;
TreeNode *node;
q.push(make_pair(0, root));
while (!q.empty()) {
p = q.front();
q.pop();
dep = p.first;
node = p.second;
while (res.size() <= dep) {
res.push_back(0);
c.push_back(0);
}
res[dep] += node->val;
c[dep] += 1;
if (node->left != NULL) {
q.push(make_pair(dep + 1, node->left));
}
if (node->right != NULL) {
q.push(make_pair(dep + 1, node->right));
}
}
int n = res.size();
int i;
for (i = 0; i < n; ++i) {
res[i] /= c[i];
}
c.clear();
return res;
}
};