236. Lowest Common Ancestor of a Binary Tree
Last updated
Last updated
給予一個binary tree, 找出Lowest Common Ancestor (LCA)
這題與235. Lowest Common Ancestor of a Binary Search Tree類似, 但差別在於235是在BST上面搜尋, 可以利用BST的特性來撰寫演算法, 但這題少了這個特性可以使用, 因此需要不同的算法
可以使用DFS
每次函式會呼叫自己並將root的左右子代當成新的root(新的左右函式), 目的是搜尋p, q
當函式中的root等於p, q時, 代表搜尋到了, 並開始return
當新的左右函式皆有回傳值時, 該次的root即為所求