4.4数据结构复习

给定二叉树根结点 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 。

class Solution {
    public TreeNode pruneTree(TreeNode root) {
    	if(count(root)==0)
    		return null;
    	else
    		cut(root);
    	return root;
    }
    
    void cut(TreeNode root) {
    	TreeNode L=root.left,R=root.right;
    	if(count(root)==0)
    		root=null;
    	if(count(L)==0)
    		root.left=null;
    	else
    		cut(L);
    	if(count(R)==0)
    		root.right=null;
    	else
    		cut(R);
    }

    int count(TreeNode root) {
    	if(root==null)
    		return 0;
    	else if(root.val==0) {
    		return count(root.left)+count(root.right);
    	}
    	else
    		return 1;
    }
}

1ms beats 100%

猜你喜欢

转载自blog.csdn.net/cobracanary/article/details/89008145
今日推荐