lowest_common_ancestor (210B)
1 # Lowest common ancestor 2 3 The *lowest common ancestor* of two [nodes] in a [tree] is the lowest [node] which is an [ancestor] of both nodes 4 5 Up: [tree] 6 7 Aliases: LCA 8 9 See also: [Lowest_common_ancestor_problem]