Question: Let T be a binary tree with height h. Recall that a node u is an ancestor of a node v if the path from
Let T be a binary tree with height h. Recall that a node u is an ancestor of a node v if the path from v up to the root of T includes u. Note that any node v is considered an ancestor of itself. For two nodes v_1 and v_2, the lowest common ancestor is the lowest (that is, furthest from the root) node u such that u is an ancestor of both v_1 and v_2. The diagrams below show the lowest common ancestor (denoted by u) of several v_1, v_2 pairs. Give pseudocode for a O(h) algorithm to find and return the lowest common ancestor of two nodes v_1 and v_2. Include a brief justification for the running time of your solution
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
