-
Notifications
You must be signed in to change notification settings - Fork 278
/
Copy pathAverageofLevelsinBinaryTree.java
42 lines (41 loc) · 1.1 KB
/
AverageofLevelsinBinaryTree.java
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
/**
* Definition for a binary tree node.
* public class TreeNode {
* int val;
* TreeNode left;
* TreeNode right;
* TreeNode() {}
* TreeNode(int val) { this.val = val; }
* TreeNode(int val, TreeNode left, TreeNode right) {
* this.val = val;
* this.left = left;
* this.right = right;
* }
* }
*/
class Solution {
// TC: O(n)
// SC : O(log(n))
public List<Double> averageOfLevels(TreeNode root) {
List<Double> ans = new ArrayList<>();
Queue<TreeNode> qu = new LinkedList<>();
qu.offer(root);
while(!qu.isEmpty()){
int size = qu.size();
double totalSum = 0;
int noOfEl = size;
while(size-->0){
TreeNode head = qu.poll();
totalSum += head.val;
if(head.left!=null){
qu.offer(head.left);
}
if(head.right!=null){
qu.offer(head.right);
}
}
ans.add(new Double(totalSum/noOfEl));
}
return ans;
}
}