-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path637.cpp
34 lines (34 loc) · 808 Bytes
/
637.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
// dfs.cpp
/**
* 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> res;
vector<int> nums;
helper(res, root, nums, 0);
for (int i = 0; i < res.size(); ++i)
res[i] /= nums[i];
return res;
}
void helper(vector<double> &res, TreeNode *root, vector<int> &nums, int i) {
if (root == NULL)
return;
if (nums.size() == i) {
nums.emplace_back(1);
res.emplace_back(root->val);
} else {
++nums[i];
res[i] += root->val;
}
helper(res, root->left, nums, i + 1);
helper(res, root->right, nums, i + 1);
}
};