-
Notifications
You must be signed in to change notification settings - Fork 0
/
1302.cpp
44 lines (39 loc) · 1.12 KB
/
1302.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
#include<iostream>
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) {}
};
class Solution {
public:
int sum=0,depth=0,max_depth=0;
int deepestLeavesSum(TreeNode* root) {
dfs(root,0);
return sum;
}
void dfs(TreeNode* cur_node,int depth){
if((cur_node->left==nullptr) and (cur_node->right==nullptr)){
if(depth>max_depth){
sum=cur_node->val;
}else if(depth==max_depth){
sum+=cur_node->val;
}
max_depth=max(depth,max_depth);
}
if(cur_node->left){
dfs(cur_node->left,depth+1);
max_depth=max(depth,max_depth);
}
if(cur_node->right){
dfs(cur_node->right,depth+1);
max_depth=max(depth,max_depth);
}
}
};
int main(){
return 0;
}