DIY: Lowest Common Ancestor of a Binary Tree
Understand how to find the lowest common ancestor of two nodes in a binary tree. Explore the problem, apply binary tree traversal techniques, and implement a Java function to solve this common coding interview question.
We'll cover the following...
We'll cover the following...
Problem statement
Given a binary tree, find the lowest common ancestor (LCA) of two given nodes in the tree.
Input
The ...