码迷,mamicode.com
首页 > 其他好文 > 详细

树的子结构

时间:2016-08-29 22:19:33      阅读:140      评论: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
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!