leetcode[235]Lowest Common Ancestor of a Binary Search Tree Python3实现
1 | # Given a binary search tree (BST), find the lowest common ancestor (LCA) of two |
从根节点向下查找,第一个值处于p、q之间的节点即为所求。
注意p、q的大小关系是未知的。
1 | # Given a binary search tree (BST), find the lowest common ancestor (LCA) of two |
从根节点向下查找,第一个值处于p、q之间的节点即为所求。
注意p、q的大小关系是未知的。