zoukankan      html  css  js  c++  java
  • [Swift]LeetCode270. 最近的二分搜索树的值 $ Closest Binary Search Tree Value

    ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★
    ➤微信公众号:山青咏芝(shanqingyongzhi)
    ➤博客园地址:山青咏芝(https://www.cnblogs.com/strengthen/
    ➤GitHub地址:https://github.com/strengthen/LeetCode
    ➤原文地址: https://www.cnblogs.com/strengthen/p/10648080.html 
    ➤如果链接不是山青咏芝的博客园地址,则可能是爬取作者的文章。
    ➤原文已修改更新!强烈建议点击原文地址阅读!支持作者!支持原创!
    ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★

    Given a non-empty binary search tree and a target value, find the value in the BST that is closest to the target.

    Note:

    • Given target value is a floating point.
    • You are guaranteed to have only one unique value in the BST that is closest to the target.

    给定一个非空的二进制搜索树和一个目标值,在BST中查找最接近目标的值。 

    注: 

    • 给定的目标值是一个浮点。
    • 您保证在BST中只有一个最接近目标的唯一值。

     Solution:

     1 public class TreeNode {
     2     public var val: Int
     3     public var left: TreeNode?
     4     public var right: TreeNode?
     5     public init(_ val: Int) {
     6         self.val = val
     7         self.left = nil
     8         self.right = nil
     9     }
    10 }
    11 
    12 class Solution {
    13     func closestValue(_ root: TreeNode?,_ target:Double) -> Int {
    14         var a:Int = root!.val
    15         var t:TreeNode? = target < Double(a) ? root?.left : root?.right
    16         if t == nil {return a}
    17         var b:Int = closestValue(t, target)
    18         return abs(Double(a) - target) < abs(Double(b) - target) ? a : b
    19     }
    20 }
  • 相关阅读:
    day 15 小结
    python中的数据类型以及格式化输出
    编程语言简介
    计算机简介
    堆排
    Lock锁
    JVM入门
    Java中反射调用私有方法出现NoSuchMethodException
    1248. 统计「优美子数组」
    注解
  • 原文地址:https://www.cnblogs.com/strengthen/p/10648080.html
Copyright © 2011-2022 走看看