题解 | #树的子结构#

树的子结构

https://www.nowcoder.com/practice/6e196c44c7004d15b1610b9afca8bd88

public class Solution {
    public boolean HasSubtree(TreeNode root1TreeNode root2) {

        if (root2 == null)return false;
        if (root1 == null)return false;
        boolean flag = isLike(root1, root2);
        boolean next = HasSubtree(root1.left, root2);
        boolean next2 = HasSubtree(root1.right, root2);
        return flag || next || next2;
    }
    public boolean isLike(TreeNode aTreeNode b) {
        if (b == null)return true;
        if (a == null || a.val != b.val)return false;
        return isLike(a.leftb.left) && isLike(a.rightb.right);
    }
}
全部评论

相关推荐

头像
11-21 11:39
四川大学 Java
是红鸢啊:忘了还没结束,还有字节的5k 违约金
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务