给定一个所有节点为非负值的二叉搜索树,求树中任意两节点的差的绝对值的最小值。
示例 :
输入:
1
\
3
/
2
输出:
1
解释:
最小绝对差为1,其中 2 和 1 的差的绝对值为 1(或者 2 和 3)。
/**
* Definition for a binary tree node.
* public class TreeNode {
* int val;
* TreeNode left;
* TreeNode right;
* TreeNode(int x) { val = x; }
* }
*/
class Solution {
int num = Integer.MAX_VALUE;
TreeNode pre = null;
public int getMinimumDifference(TreeNode root) {
inOrder(root);
return num;
}
public void inOrder(TreeNode root){
if(root == null){
return ;
}
inOrder(root.left);
if(pre!=null){
num = Math.min(num, root.val - pre.val);
}
pre = root;
inOrder(root.right);
}
}
本文探讨了如何在非负值二叉搜索树中找到任意两节点间差的绝对值的最小值。通过中序遍历算法,我们能够有效地解决这一问题,找到树中具有最小绝对差的两个节点。
466

被折叠的 条评论
为什么被折叠?



