783. Minimum Distance Between BST Nodes

Description

Given a Binary Search Tree (BST) with the root node root, return the minimum difference between the values of any two different nodes in the tree.

Example :

Input: root = [4,2,6,1,3,null,null]
Output: 1
Explanation:
Note that root is a TreeNode object, not an array.

The given tree [4,2,6,1,3,null,null] is represented by the following diagram:

BST

while the minimum difference in this tree is 1, it occurs between node 1 and node 2, also between node 3 and node 2.

Note:

  1. The size of the BST will be between 2 and 100.
  2. The BST is always valid, each node's value is an integer, and each node's value is different.

Solution

Inorder traversal, time O(n), space O(n)

/**
 * Definition for a binary tree node.
 * public class TreeNode {
 *     int val;
 *     TreeNode left;
 *     TreeNode right;
 *     TreeNode(int x) { val = x; }
 * }
 */
class Solution {
    public int minDiffInBST(TreeNode root) {
        List<Integer> list = new ArrayList<>();
        inorder(root, list);
        int minDiff = Integer.MAX_VALUE;
        
        for (int i = 1; i < list.size(); ++i) {
            minDiff = Math.min(minDiff, list.get(i) - list.get(i - 1));
        }
        
        return minDiff;
    }
    
    public void inorder(TreeNode root, List<Integer> list) {
        if (root == null) {
            return;
        }
        
        inorder(root.left, list);
        list.add(root.val);
        inorder(root.right, list);
    }
}

DFS

自己随便写的,竟然也可以过。

/**
 * Definition for a binary tree node.
 * public class TreeNode {
 *     int val;
 *     TreeNode left;
 *     TreeNode right;
 *     TreeNode(int x) { val = x; }
 * }
 */
class Solution {
    public int minDiffInBST(TreeNode root) {
        if (root == null) {
            return Integer.MAX_VALUE;
        }
        
        int minDiff = Math.min(root.left != null 
                               ? root.val - getMax(root.left) : Integer.MAX_VALUE
                               , root.right != null 
                               ? getMin(root.right) - root.val : Integer.MAX_VALUE);
        minDiff = Math.min(minDiff
                           , Math.min(minDiffInBST(root.left), minDiffInBST(root.right)));
        return minDiff;
    }
    
    public int getMax(TreeNode root) {
        if (root.right == null) {
            return root.val;
        }
        
        return getMax(root.right);
    }
    
    public int getMin(TreeNode root) {
        if (root.left == null) {
            return root.val;
        }
        
        return getMin(root.left);
    }
}
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容

  • 我不是一个擅长于写作的人,但相对于拍照来说,写作能更加清楚地记录你此刻的心情,所以我开始用简书记录下我的心情。 一...
    卜乔阅读 98评论 0 0
  • 今天下午跟老妈打电话的时候老妈跟我说,大树砍了,我听到这个消息之后非常伤感,那棵大树比我的年纪还大(我今年...
    杂草鸣2017阅读 281评论 0 3
  • 一:os.walk topdown :默认值是“True”表示首先返回顶级目录下的文件,然后再遍历子目录中的文件。...
    永远学习中阅读 806评论 0 0