-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathtree.cpp
57 lines (57 loc) · 1.24 KB
/
tree.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
54
55
56
57
#include <iostream>
#include <vector>
#include <string>
#include <algorithm>
#include <cstdio>
using namespace std;
struct TreeNode {
int val;
TreeNode *left;
TreeNode *right;
TreeNode(int x) : val(x), left(nullptr), right(nullptr){}
};
class Solution {
public:
int rob(TreeNode *root) {
int yes = 0, no = 0;
dfs(root, &yes, &no);
return max(yes, no);
}
private:
void dfs(TreeNode *root, int *yes, int *no) {
if (root == nullptr) {
*yes = 0;
*no = 0;
return;
}
int left_yes, left_no, right_yes, right_no;
dfs(root->left, &left_yes, &left_no);
dfs(root->right, &right_yes, &right_no);
*yes = left_no + right_no + root->val;
*no = max(left_yes, left_no) + max(right_yes, right_no);
}
};
TreeNode *mk_node(int val)
{
return new TreeNode(val);
}
TreeNode *mk_child(TreeNode *root, TreeNode *left, TreeNode *right)
{
root->left = left;
root->right = right;
return root;
}
TreeNode *mk_child(TreeNode *root, int left, int right)
{
return mk_child(root, new TreeNode(left), new TreeNode(right));
}
TreeNode *mk_child(int root, int left, int right)
{
return mk_child(new TreeNode(root), new TreeNode(left), new TreeNode(right));
}
int main(int argc, char **argv)
{
Solution solution;
TreeNode *root = mk_child(4, 1, 0);
return 0;
}