/**
* Definition for a binary tree node.
* public class TreeNode {
* int val;
* TreeNode left;
* TreeNode right;
* TreeNode(int x) { val = x; }
* }
*/
public class Solution {
public int min = Integer.MAX_VALUE ;
public int last = -1;
public void travel(TreeNode root){
if(root == null ){
return ;
}
travel(root.left);
if(last != -1){
min = Math.min(min , Math.abs(root.val - last));
}
last = root.val ;
travel(root.right);
}
public int getMinimumDifference(TreeNode root) {
travel(root);
return min;
}
}
530. Minimum Absolute Difference in BST
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- Given a binary search tree with non-negative values, find...
- 由于在中序遍历下的BST得到的值依然是依次有序的,利用这一点,保存前一个点和现有点进行比较就好了,时间是O(N)。...
- Given a binary search tree with non-negative values, find...
- 题目 Given a binary search tree with non-negative values, f...
- 题目 Given a binary search tree with non-negative values, f...