剑指Offer打卡day43—— ACWing 88. 树中两个结点的最低公共祖先
Posted Johnny*
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了剑指Offer打卡day43—— ACWing 88. 树中两个结点的最低公共祖先相关的知识,希望对你有一定的参考价值。
【题目描述】
/**
* Definition for a binary tree node.
* public class TreeNode {
* int val;
* TreeNode left;
* TreeNode right;
* TreeNode(int x) { val = x; }
* }
*/
class Solution {
/*
lowestCommonAncestor函数:
1. 如果p、q都在该子树Tree中则返回该节点
2. 如果p在该子树中 q不在该子树中,则返回left
3. 如果q在该子树中 p不在该子树中,则返回right
*/
public TreeNode lowestCommonAncestor(TreeNode root, TreeNode p, TreeNode q) {
if( root == null ) return null;
if( root == p || root == q) return root;
TreeNode left = lowestCommonAncestor(root.left, p, q);
TreeNode right = lowestCommonAncestor(root.right, p, q);
if(left != null && right != null)return root;
if( left != null ) return left;
return right;
}
}
以上是关于剑指Offer打卡day43—— ACWing 88. 树中两个结点的最低公共祖先的主要内容,如果未能解决你的问题,请参考以下文章
剑指Offer打卡day42——AcWing 77. 翻转单词顺序
剑指Offer打卡day38 —— AcWing 43. 不分行从上往下打印二叉树
剑指Offer打卡day43——Acwing 70. 二叉搜索树的第k个结点