首页 > 其他 > 详细

树的子结构

时间:2016-08-29 22:16:49      阅读:153      评论:0      收藏:0      [点我收藏+]
public class Solution {
    public boolean HasSubtree(TreeNode root1,TreeNode root2) {
        boolean result = false;
        if(root1 == null || root2 == null) return false;
        if(root1!=null && root2!=null){
            if(root1.val == root2.val){
                result = SameTree(root1,root2);
            }
            if(!result){
                result = HasSubtree(root1.left,root2);
            }
            if(!result){
                result = HasSubtree(root1.right,root2);
            }
        }
        return result;
    }
    public boolean SameTree(TreeNode root1,TreeNode root2){
        if(root1 == null && root2 == null){
            return true;
        }
        if(root1 == null &&root2!=null){
            return false;
        }
        if(root1!=null && root2 == null){
            return true;
        }
        if(root1.val != root2.val){
            return false;
        }
        return SameTree(root1.left,root2.left)&&SameTree(root1.right,root2.right);
    }
    
}

  

树的子结构

原文:http://www.cnblogs.com/yingpu/p/5819705.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!