首页 > 其他 > 详细

给一个target number,在BST上找到closest point

时间:2014-11-23 17:11:21      阅读:240      评论:0      收藏:0      [点我收藏+]
void Closed(TreeNode * root, const int val, int & res)
{
    if(root==NULL)
        return INT_MAX;
    if(root->left)
        Closed(root->left,val,res);
    if(abs(root->val - val) < abs(res - val))
    {
        res = root->val;
    }
    if(root->val < val && root->right)
    {
        Colsed(root->right,val,res);
    }
}

  

给一个target number,在BST上找到closest point

原文:http://www.cnblogs.com/jobfindingnotes/p/4116616.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!