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

270. Closest Binary Search Tree Value

时间:2018-08-09 19:23:17      阅读:104      评论:0      收藏:0      [点我收藏+]

标签:value   也有   node   targe   sea   abs   binary   target   之间   

270. Closest Binary Search Tree Value

不停移动root直到走到底。 之间比较和当前最好的的值哪个更好。 注意先保存下 第一个root的value, 因为这个root 的 value 也有可能是 最好的值


class Solution {
    public int closestValue(TreeNode root, double target) {
        int result = root.val;
        while(root != null){
            if(Math.abs(root.val - target) < Math.abs(result - target)){
                result = root.val;
            }
            if(root.val > target){
                root = root.left;
            }else{
                root = root.right;
            }
        }
        return result;
        
    }
}

 

270. Closest Binary Search Tree Value

标签:value   也有   node   targe   sea   abs   binary   target   之间   

原文地址:https://www.cnblogs.com/tobeabetterpig/p/9450921.html

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