236 Lowest Common Ancestor of a Binary Tree
236. Lowest Common Ancestor of a Binary Tree
1. Question
_______3______
/ \
___5__ ___1__
/ \ / \
6 _2 0 8
/ \
7 42. Implementation
class Solution {
public TreeNode lowestCommonAncestor(TreeNode root, TreeNode p, TreeNode q) {
if (root == null || root == p || root == q) {
return root;
}
TreeNode left = lowestCommonAncestor(root.left, p, q);
TreeNode right = lowestCommonAncestor(root.right, p, q);
if (left != null && right != null) {
return root;
}
return left != null ? left : right;
}
}3. Time & Space Complexity
Previous235 Lowest Common Ancestor of a Binary Search TreeNext671 Second Minimum Node In a Binary Tree
Last updated