二叉树枝剪
题目描述:
给定一个二叉树 根节点 root ,树的每个节点的值要么是 0,要么是 1。请剪除该二叉树中所有节点的值为 0 的子树。节点 node 的子树为 node 本身,以及所有 node 的后代。
原题链接
示例 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]
题解:
class Solution {
public:
// 后序遍历(先左右再根节点)解决:判断标准为节点为0且左右子树没了,就删掉
TreeNode* pruneTree(TreeNode* root) {
if(!root) return root;// 1.首先确定终止条件
root->left = pruneTree(root->left);//2.如何往下传递递归参数
root->right = pruneTree(root->right);
if(root->val == 0 && !root->left && !root->right){//3.这一层要造成什么影响
return nullptr;//传回空的结果,最后root->left或者root->right就为空,相当于剪枝
}
return root;//4.不为空就是保留原来状态,最后就是顶层的root节点
}
};