爛尾 10 年復活無望,山東晶圓廠 8 寸二手裝置低價兜售
阿新 • • 發佈:2021-11-22
給定一個二叉搜尋樹, 找到該樹中兩個指定節點的最近公共祖先。
百度百科中最近公共祖先的定義為:“對於有根樹 T 的兩個結點 p、q,最近公共祖先表示為一個結點 x,滿足 x 是 p、q 的祖先且 x 的深度儘可能大(一個節點也可以是它自己的祖先)。”
例如,給定如下二叉搜尋樹: root =[6,2,8,0,4,7,9,null,null,3,5]
來源:力扣(LeetCode)
連結:https://leetcode-cn.com/problems/lowest-common-ancestor-of-a-binary-search-tree
著作權歸領釦網路所有。商業轉載請聯絡官方授權,非商業轉載請註明出處。
最近公共祖先
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; } if (left == null) { return right; } return left; } } class TreeNode { int val; TreeNode left; TreeNode right; TreeNode(int x) { val = x; } }
二叉樹的最近公共祖先
心之所向,素履以往 生如逆旅,一葦以航class Solution { public TreeNode lowestCommonAncestor(TreeNode root, TreeNode p, TreeNode q) { while (root != null) { if (root == p || root == q) { return root; } if (p.val < root.val && q.val < root.val) { root = root.left; } else if (p.val > root.val && q.val > root.val) { root = root.right; } else { return root; } } return null; } } class TreeNode { int val; TreeNode left; TreeNode right; TreeNode(int x) { val = x; } }