/**
* 814. 二叉树剪枝
* 给定二叉树根结点 root ,此外树的每个结点的值要么是 0,要么是 1。
* 返回移除了所有不包含 1 的子树的原二叉树。
* ( 节点 X 的子树为 X 本身,以及所有 X 的后代。)
* 示例1:
* 输入: [1,null,0,0,1]
* 输出: [1,null,0,null,1]
* 解释:
* 只有红色节点满足条件“所有不包含 1 的子树”。
* 右图为返回的答案。
* 链接:https://leetcode-cn.com/problems/binary-tree-pruning
* Definition for a binary tree node.
* public class TreeNode {
* int val;
* TreeNode left;
* TreeNode right;
* TreeNode() {}
* TreeNode(int val) { this.val = val; }
* TreeNode(int val, TreeNode left, TreeNode right) {
* this.val = val;
* this.left = left;
* this.right = right;
* }
* }
*/
class Solution {
public TreeNode pruneTree(TreeNode root) {
if(root == null){
return root;
}
TreeNode hair = new TreeNode(-1);
hair.left = root;
dfs(hair);
return hair.left;
}
private int dfs(TreeNode root){
if(root == null){
return 0;
}
int n = root.val == 1 ? 1 : 0;
if(root.left != null){
int m = dfs(root.left);
if(m == 0){
root.left = null;
}
n += m;
}
if(root.right != null){
int m = dfs(root.right);
if(m == 0){
root.right = null;
}
n += m;
}
return n;
}
}