题解 | #树的子结构#

树的子结构

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

public class TreeNode {
    int val = 0;
    TreeNode left = null;
    TreeNode right = null;

    public TreeNode(int val) {
        this.val = val;

    }

}
*/
public class Solution {
    public boolean HasSubtree(TreeNode root1,TreeNode root2) {
        return (root1 != null && root2 != null) && (recur(root1,root2) || HasSubtree(root1.left,root2) || HasSubtree(root1.right,root2));
        
    }
    public boolean recur(TreeNode root1,TreeNode root2){
        if(root2 == null){
            return true; 
       }
        if(root1 == null || root1.val != root2.val){
            return false;
        }
        return recur(root1.left,root2.left) && recur(root1.right,root2.right);
    }
}
全部评论

相关推荐

程序员牛肉:可以说含金量不如王者荣耀省标。
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务