给定二叉树根结点 root
,此外树的每个结点的值要么是 0,要么是 1。
返回移除了所有不包含 1 的子树的原二叉树。
( 节点 X 的子树为 X 本身,以及所有 X 的后代。)
示例1: 输入: [1,null,0,0,1] 输出: [1,null,0,null,1] 解释: 只有红色节点满足条件“所有不包含 1 的子树”。 右图为返回的答案。
示例2: 输入: [1,0,1,0,0,0,1] 输出: [1,null,1,null,1]
示例3: 输入: [1,1,0,1,1,0,1,0] 输出: [1,1,0,1,1,null,1]
说明:
100
个节点。0
或 1
。思路:若根节点非空,则对根节点的左子树和右子数进行剪枝;剪枝后只要节点非空,说明左节点和右节点中不存在不包含 1 的子树,因此只有root->val==0且剪完枝后的左右子节点==None时,返回None,否则返回root
C++
/**
* Definition for a binary tree node.
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode(int x) : val(x), left(NULL), right(NULL) {}
* };
*/
class Solution {
public:
TreeNode* pruneTree(TreeNode* root)
{
if(NULL==root)
{
return NULL;
}
else
{
root->left=pruneTree(root->left);
root->right=pruneTree(root->right);
if(0==root->val && NULL==root->left && NULL==root->right)
{
return NULL;
}
return root;
}
}
};
python
# Definition for a binary tree node.
# class TreeNode:
# def __init__(self, x):
# self.val = x
# self.left = None
# self.right = None
class Solution:
def pruneTree(self, root: TreeNode) -> TreeNode:
if None==root:
return None
else:
root.left=self.pruneTree(root.left)
root.right=self.pruneTree(root.right)
if 0==root.val and None==root.left and None==root.right:
return None
return root