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

236. 二叉树的最近公共祖先

时间:2019-01-18 12:14:03      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:pre   roo   tree node   common   二叉树   efi   __init__   nbsp   binary   

236. 二叉树的最近公共祖先

方法一

# Definition for a binary tree node.
# class TreeNode:
#     def __init__(self, x):
#         self.val = x
#         self.left = None
#         self.right = None

class Solution:
    def lowestCommonAncestor(self, root, p, q):
        """
        :type root: TreeNode
        :type p: TreeNode
        :type q: TreeNode
        :rtype: TreeNode
        """
        
        if root == None or root == q or root ==p:
            return root
        
        left = self.lowestCommonAncestor(root.left, p, q)
        right = self.lowestCommonAncestor(root.right, p, q)
        if left and right:
            return root
        return right or left

 

236. 二叉树的最近公共祖先

标签:pre   roo   tree node   common   二叉树   efi   __init__   nbsp   binary   

原文地址:https://www.cnblogs.com/xiao-xue-di/p/10286526.html

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