leetcode——235. 二叉搜索树的最近公共祖先

Posted 欣姐姐

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode——235. 二叉搜索树的最近公共祖先相关的知识,希望对你有一定的参考价值。

class Solution:
    def lowestCommonAncestor(self, root: TreeNode, p: TreeNode, q: TreeNode) -> TreeNode:
        if p.val>q.val:
            p,q=q,p
        if q.val<root.val:
            return self.lowestCommonAncestor(root.left,p,q)
        elif p.val>root.val:
            return self.lowestCommonAncestor(root.right,p,q)
        else:
            return root
执行用时 :88 ms, 在所有 python3 提交中击败了91.02%的用户
内存消耗 :18 MB, 在所有 python3 提交中击败了5.48%的用户
 
——2019.11.19

以上是关于leetcode——235. 二叉搜索树的最近公共祖先的主要内容,如果未能解决你的问题,请参考以下文章

leetcode-235二叉搜索树的最近公共祖先

leetcode235二叉搜索树的最近公共祖先

LeetCode235 二叉搜索树的最近公共祖先

LeetCode235 二叉搜索树的最近公共祖先

Leetcode 235.二叉搜索树的公共祖先

leetcode 235. 二叉搜索树的最近公共祖先(c++)