目录

0530:二叉搜索树的最小绝对差

力扣第 530 题

题目

给你一个二叉搜索树的根节点 root ,返回 树中任意两不同节点值之间的最小差值

差值是一个正数,其数值等于两值之差的绝对值。

示例 1:

输入:root = [4,2,6,1,3]
输出:1

示例 2:

输入:root = [1,0,48,null,null,12,49]
输出:1

提示:

  • 树中节点的数目范围是 [2, 104]
  • 0 <= Node.val <= 105

注意:本题与 783 https://leetcode-cn.com/problems/minimum-distance-between-bst-nodes/ 相同

相似问题:

分析

中序遍历求最小相邻间隔即可。

解答

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
class Solution:
    def getMinimumDifference(self, root: Optional[TreeNode]) -> int:
        res,pre = inf,-inf
        sk = [root]
        while sk:
            u = sk.pop()
            if isinstance(u,int):
                res = min(res,u-pre)
                pre = u
            elif u:
                sk.extend([u.right,u.val,u.left])
        return res

56 ms