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

树的子结构

时间:2019-02-28 14:36:48      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:col   tree   div   span   val   solution   ||   lse   root   

public class Solution {
  
public boolean HasSubtree(TreeNode root1,TreeNode root2) {   boolean ret = false;   if(root1 == null || root2 == null) return ret;   ret = helper(root1,root2);   if(!ret) ret = helper(root1.left,root2);   if(!ret) ret = helper(root1.right,root2);   return ret;   }   public boolean helper(TreeNode root1, TreeNode root2) {   if(root2==null) return true;   if(root1==null) return false;   if(root1.val != root2.val) return false;   return helper(root1.left, root2.left) && helper(root1.right, root2.right);   } }

 

树的子结构

标签:col   tree   div   span   val   solution   ||   lse   root   

原文地址:https://www.cnblogs.com/zhwcs/p/10449977.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!