博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
lintcode :最近公共祖先
阅读量:5896 次
发布时间:2019-06-19

本文共 3667 字,大约阅读时间需要 12 分钟。

题目

给定一棵二叉树,找到两个节点的最近公共父节点(LCA)。

最近公共祖先是两个节点的公共的祖先节点且具有最大深度。

样例

对于下面这棵二叉树

4 / \3   7   / \  5   6

LCA(3, 5) = 4

LCA(5, 6) = 7

LCA(6, 7) = 7

解题

不知道如何下手,,自顶向下的解法中有下面的说明:

初首先看看3和5,这两个节点分居根节点4的两侧,如果可以从子节点往父 节点递推,那么他们将在根节点4处第一次重合;再来看看5和6,这两个都在根节点4的右侧,沿着父节点往上递推,他们将在节点7处第一次重合;最 后来看看6和7,此时由于7是6的父节点,故7即为所求。从这三个基本例子我们可以总结出两种思路——自顶向下(从前往后递推)和自底向上(从后 往前递推)。顺着上述实例的分析,我们首先看看自底向上的思路,自底向上的实现用一句话来总结就是——如果遍历到的当前节点是 A/B 中的任意一个,那么我们就向父节点汇报此节点,否则递归到节点为空时返回空值。具体来说会有如下几种情况:1.当前节点不是两个节点中的任意一个,此时应判断左右子树的返回结果。  1.若左右子树均返回非空节点,那么当前节点一定是所求的根节点,将当前节点逐层向前汇报。// 两个节点分居树的两侧  2.若左右子树仅有一个子树返回非空节点,则将此非空节点向父节点汇报。// 节点仅存在于树的一侧  3.若左右子树均返回NULL, 则向父节点返回NULL. // 节点不在这棵树中2.当前节点即为两个节点中的一个,此时向父节点返回当前节点

Java

/** * Definition of TreeNode: * public class TreeNode { *     public int val; *     public TreeNode left, right; *     public TreeNode(int val) { *         this.val = val; *         this.left = this.right = null; *     } * } */public class Solution {    /**     * @param root: The root of the binary search tree.     * @param A and B: two nodes in a Binary.     * @return: Return the least common ancestor(LCA) of the two nodes.     */    public TreeNode lowestCommonAncestor(TreeNode root, TreeNode A, TreeNode B) {        // write your code here        if( root ==null || A==root || B == root)            return root;        TreeNode left = lowestCommonAncestor(root.left,A,B);        TreeNode right = lowestCommonAncestor(root.right,A,B);        if(left != null && right !=null)            return root;        if(left!=null)            return left;        return right;    }}
Java Code

Python

"""Definition of TreeNode:class TreeNode:    def __init__(self, val):        self.val = val        self.left, self.right = None, None"""import copyclass Solution:    """    @param root: The root of the binary search tree.    @param A and B: two nodes in a Binary.    @return: Return the least common ancestor(LCA) of the two nodes.    """     def lowestCommonAncestor(self, root, A, B):        # write your code here        if root == None or root == A or root == B:            return root        left = self.lowestCommonAncestor(root.left,A,B)        right = self.lowestCommonAncestor(root.right,A,B)        if left!=None and right!=None:            return root        if left!=None:            return left        return right
Python Code

这个给了dfs的解法,但是用java一直写不对,在 找到了根据DFS从根节点找到当前节点的路径,知道路径就很简单了,这里还是看程序吧

/** * Definition of TreeNode: * public class TreeNode { *     public int val; *     public TreeNode left, right; *     public TreeNode(int val) { *         this.val = val; *         this.left = this.right = null; *     } * } */public class Solution {    /**     * @param root: The root of the binary search tree.     * @param A and B: two nodes in a Binary.     * @return: Return the least common ancestor(LCA) of the two nodes.     */    public TreeNode lowestCommonAncestor(TreeNode root, TreeNode A, TreeNode B) {        // write your code here        if( root ==null || A==root || B == root)            return root;        ArrayList
pathA = new ArrayList
(); ArrayList
pathB = new ArrayList
(); dfs(root,pathA,A); dfs(root,pathB,B); TreeNode res = null; for(int i=0;i
path,TreeNode node){ if(root == null) return false; if(node == root){ // 最后一个节点也要加进去,不然会出错 path.add(root); return true; } path.add(root); if(dfs(root.left,path,node) ==true) return true; if(dfs(root.right,path,node) ==true) return true; path.remove(path.size() -1); return false; }}

 

转载地址:http://cpxsx.baihongyu.com/

你可能感兴趣的文章
Spring Cloud 入门教程(二): 服务消费者(rest+ribbon)(Greenwich.RELEASE)
查看>>
iOS开发20:Navigation Bar的简单设置
查看>>
iOS开发24:使用SQLite3存储和读取数据
查看>>
GMF树形布局 2 实现展开/折叠
查看>>
Cocos2dx 2.0x Touch事件
查看>>
php判断是否登录
查看>>
Yii2 Unable to verify your data submission 错误-CSRF
查看>>
angularjs-paste-upload
查看>>
hadoop学习笔记
查看>>
解除 Linux 系统的最大进程数和最大文件打开数限制
查看>>
在 Linux 中删除超大文件的技巧
查看>>
Java类的修饰符判断:java.lang.reflect.Modifier
查看>>
使用优盘或者移动硬盘安装Ubuntu
查看>>
electron-创建一个hello world应用
查看>>
RXjs相关
查看>>
百练2973: Skew binary 数 之 Java 题解
查看>>
SaltStack配置管理
查看>>
linux基础命令 head
查看>>
在模板中将php数组转换成js对象
查看>>
使用java调用FFMPEG进行转码
查看>>