-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmy_solution.js
60 lines (52 loc) · 1.55 KB
/
my_solution.js
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
class TreeNode {
constructor(val, left, right) {
this.val = (val === undefined ? 0 : val);
this.left = (left === undefined ? null : left);
this.right = (right === undefined ? null : right);
}
}
/**
* @param {TreeNode} root
* @return {number}
*/
const maxLevelSum = (root) => {
let queue = [root], level = 1, max = root.val, tmpMax = 0,
nbOfLeaves = 0, tmpLeaves = 0, nodesToVisit = 2, visitedCount = 0, list = [];
while (queue.length > 0) {
let curr = queue.shift(), left = curr.left, right = curr.right;
console.log(`> curr:${curr.val}`)
if (undefined !== left) {
visitedCount++;
if (null !== left) {
tmpMax += left.val;
queue.push(left);
} else {
tmpLeaves++;
}
}
if (undefined !== right) {
visitedCount++;
if (null !== right) {
tmpMax += right.val;
queue.push(right);
} else {
tmpLeaves++;
}
}
console.log(`old_level:${level}, tmpMax:${tmpMax}, max:${max}, nodesToVisit:${nodesToVisit} visitedCount:${visitedCount}, tmpLeaves:${tmpLeaves}, nbOfLeaves:${nbOfLeaves}`)
if (nodesToVisit === (visitedCount + nbOfLeaves)) {
let tmpLevel = Math.log2(nodesToVisit) + 1;
console.log(`>>> tmpLevel:${tmpLevel}, tmpMax:${tmpMax}, max:${max}`)
if ((null !== tmpMax) && (tmpMax > max)) {
level = tmpLevel;
max = tmpMax;
}
nodesToVisit *= 2;
visitedCount = 0;
tmpMax = null;
nbOfLeaves = (nbOfLeaves + tmpLeaves) * 2;
tmpLeaves = 0;
}
}
return level;
};