题解 | #二叉搜索树的最近公共祖先#
# class TreeNode: # def __init__(self, x): # self.val = x # self.left = None # self.right = None # # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param root TreeNode类 # @param p int整型 # @param q int整型 # @return int整型 # class Solution: def lowestCommonAncestor(self , root: TreeNode, p: int, q: int) -> int: # write code here #P和q位于root的右侧 if root.val <p and root.val <q: root=root.right return self.lowestCommonAncestor(root,p,q) #p和q位于root的左侧 elif root.val >p and root.val >q: root=root.left return self.lowestCommonAncestor(root,p,q) #p和q位于root的俩侧,或者不是俩侧,p等于root或者q等于root elif (root.val>p and root.val <q) or (root.val<p and root.val >q) or root.val==p or root.val==q: return root.val