-
Notifications
You must be signed in to change notification settings - Fork 10
/
Day-117.cpp
53 lines (49 loc) · 1.45 KB
/
Day-117.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
//
// Created by Amit Kumar on 05/07/23.
//
#include "queue"
using namespace std;
//struct TreeNode {
// int val;
// TreeNode *left;
// TreeNode *right;
//
// TreeNode() : val(0), left(nullptr), right(nullptr) {}
//
// TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
//
// TreeNode(int x, TreeNode *left, TreeNode *right) : val(x), left(left), right(right) {}
//};
/*
* This question focus over BFS the solution is for maximum sum as followed for LeetCode
* But question actually asks for minimum, So it will need to tweak ">" to "<" at line 45 and
* and INT_MIN to INT_MAX at line 29
*/
class Solution {
public:
int maxLevelSum(TreeNode *root) {
int max_sum{INT_MIN}, max_sum_level{1}, current_level = 1;
if (!root)
return max_sum_level;
queue<TreeNode*> q;
q.push(root);
while (!q.empty()) {
int temp_sum{};
int level_size = static_cast<int>(q.size());
for (int i=0; i<level_size; ++i) {
temp_sum += q.front()->val;
root = q.front(); q.pop();
if (root->left)
q.push(root->left);
if (root->right)
q.push(root->right);
}
if (temp_sum > max_sum) {
max_sum = temp_sum;
max_sum_level = current_level;
}
current_level++;
}
return max_sum_level;
}
};