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

求两个二叉树的最低公共祖先节点

时间:2018-07-10 11:28:19      阅读:129      评论:0      收藏:0      [点我收藏+]

标签:comm   als   tla   bool   root   style   节点   span   parent   

TreeNode getLastCommonParent(TreeNode root,TreeNode t1,TreeNode t2){
        if(findNode(root.left,t1)){
            if(findNode(root.right,t2)){
                return root;
            }else{
                return getLastCommonParent(root.left,t1,t2);
            }
        }else{
            if(findNode(root.left,t2)){
                return root;
            }else{
                return getLastCommonParent(root.right,t1,t2)
            }
        }
    }
    // 查找节点node是否在当前 二叉树中
    boolean findNode(TreeNode root,TreeNode node){
        if(root == null || node == null){
            return false;
        }
        if(root == node){
            return true;
        }
        boolean found = findNode(root.left,node);
        if(!found){
            found = findNode(root.right,node);
        }
        return found;
    }

 

求两个二叉树的最低公共祖先节点

标签:comm   als   tla   bool   root   style   节点   span   parent   

原文地址:https://www.cnblogs.com/yingpu/p/9287206.html

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