-
Notifications
You must be signed in to change notification settings - Fork 3
/
814.cpp
28 lines (28 loc) · 841 Bytes
/
814.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
/**
* Definition for a binary tree node.
* 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:
bool dfs(TreeNode* node) {
if (node == nullptr) return false;
bool current = (node->val == 1);
bool left = dfs(node->left);
bool right = dfs(node->right);
if (!left) node->left = nullptr;
if (!right) node->right = nullptr;
return (current || left || right);
}
TreeNode* pruneTree(TreeNode* root) {
bool res = dfs(root);
if (!res) return nullptr;
return root;
}
};