forked from gouthampradhan/leetcode
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMinimumAbsoluteDifferenceInBST.java
52 lines (45 loc) · 1.23 KB
/
MinimumAbsoluteDifferenceInBST.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
package tree;
/**
* Created by gouthamvidyapradhan on 15/02/2018. Given a binary search tree with non-negative
* values, find the minimum absolute difference between values of any two nodes.
*
* <p>Example:
*
* <p>Input:
*
* <p>1 \ 3 / 2
*
* <p>Output: 1
*
* <p>Explanation: The minimum absolute difference is 1, which is the difference between 2 and 1 (or
* between 2 and 3). Note: There are at least two nodes in this BST.
*/
public class MinimumAbsoluteDifferenceInBST {
public static class TreeNode {
int val;
TreeNode left;
TreeNode right;
TreeNode(int x) {
val = x;
}
}
int min = Integer.MAX_VALUE;
public static void main(String[] args) throws Exception {
TreeNode root = new TreeNode(1);
root.right = new TreeNode(2);
root.right.right = new TreeNode(3);
new MinimumAbsoluteDifferenceInBST().getMinimumDifference(root);
}
public int getMinimumDifference(TreeNode root) {
getMin(root, null);
return min;
}
private Integer getMin(TreeNode node, Integer prev) {
if (node == null) return prev;
Integer left = getMin(node.left, prev);
if (left != null) {
min = Math.min(min, Math.abs(node.val - left));
}
return getMin(node.right, node.val);
}
}