码迷,mamicode.com
首页 > 其他好文 > 详细

剑指 Offer 68 - I. 二叉搜索树的最近公共祖先

时间:2020-12-23 11:52:45      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:efi   tree node   turn   rgb   null   stc   rgba   span   class   

/**
 * Definition for a binary tree node.
 * public 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){
                //因为是二叉搜索树,p、q 值都大于 root 说明都在root右子树中
                if(p.val > root.val && q.val > root.val){
                    root = root.right;
                //p、q 值都小于 root 说明都在root左子树中
                }else if(p.val < root.val && q.val < root.val){
                    root = root.left;
                //一大一小,说明root是公共祖先,返回
                }else break;
            }
            return root;

    }
}

 

剑指 Offer 68 - I. 二叉搜索树的最近公共祖先

标签:efi   tree node   turn   rgb   null   stc   rgba   span   class   

原文地址:https://www.cnblogs.com/peanut-zh/p/14154036.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!