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

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

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

Talk is cheap . Show me the code .

/**
 * 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 min=INT_MAX;
    TreeNode* preNode=NULL;
    void DFS(TreeNode* root){
        if(root==NULL) return;
        DFS(root->left);
        if(preNode!=NULL&&abs(root->val-preNode->val)<min) min=abs(root->val-preNode->val);
        preNode=root;
        DFS(root->right);
    }
    int getMinimumDifference(TreeNode* root) {
        DFS(root);
        return min;
    }
};
posted @ 2020-02-28 20:02  Herman·H  阅读(172)  评论(0编辑  收藏  举报