leetcode 二叉树剪枝

给定二叉树根结点 root,此外树的每个结点的值要么是 0,要么是 1
返回移除了所有不包含 1 的子树的原二叉树。
( 节点 X 的子树为 X 本身,以及所有 X 的后代。)

示例1

输入: [1,null,0,0,1]
输出: [1,null,0,null,1]

解释:
只有红色节点满足条件“所有不包含 1 的子树”。
右图为返回的答案。


image.png

示例2

输入: [1,0,1,0,0,0,1]
输出: [1,null,1,null,1]


image.png

示例3

输入: [1,1,0,1,1,0,1,0]
输出: [1,1,0,1,1,null,1]


image.png

说明:

  • 给定的二叉树最多有 100 个节点。
  • 每个节点的值只会为 01

这题的思路就是通过后序遍历,如果遍历到的结点值为0并且左右子树为null,则将该结点设为nullptr

class Solution {
public:
    TreeNode* afterTraves(TreeNode* root){
        if(root != nullptr){
            root->left = afterTraves(root->left);
            root->right = afterTraves(root->right);
            if(root->val == 0 && root->left == nullptr && root->right == nullptr){
                root = nullptr;
            }
        }
        return root;
    }
    TreeNode* pruneTree(TreeNode* root) {
        return afterTraves(root);
    }
};

题目链接:https://leetcode-cn.com/problems/binary-tree-pruning

你可能感兴趣的:(leetcode 二叉树剪枝)