530. 二叉搜索树的最小绝对差

给定一个所有节点为非负值的二叉搜索树,求树中任意两节点的差的绝对值的最小值。

示例 :

输入:

   1
    \
     3
    /
   2

输出:
1

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10

解释:
最小绝对差为1,其中 2 和 1 的差的绝对值为 1(或者 2 和 3)。
注意: 树中至少有2个节点。

分析:二叉搜索树的中序遍历为升序序列,因此问题就转化为这个生序序列相邻两个值的差的最小值。

/**
 * Definition for a binary tree node.
 * struct TreeNode {
 *     int val;
 *     TreeNode *left;
 *     TreeNode *right;
 *     TreeNode(int x) : val(x), left(NULL), right(NULL) {}
 * };
 */
class Solution {
public:
    int getMinimumDifference(TreeNode* root) {
        int res = INT_MAX, pre = -1;
        inorder(root, res, pre);
        return res;
    }
private:
    void inorder(TreeNode* root, int& res, int& pre) {
    if(!root) {
        return;
    }
    inorder(root->left, res, pre);
    if(pre != -1) {
        res = min(res, root->val - pre);
    }
    pre = root->val;
    inorder(root->right, res, pre);
}
};
---------------------
作者:会很好笑诶
来源:CSDN
原文:https://blog.csdn.net/hy971216/article/details/81228089
版权声明:本文为博主原创文章,转载请附上博文链接!

posted @ 2019-07-28 17:50  天涯海角路  阅读(97)  评论(0)    收藏  举报