Leetcode:530. 二叉搜索树的最小绝对差
Posted cell_coder
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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;
}
};
以上是关于Leetcode:530. 二叉搜索树的最小绝对差的主要内容,如果未能解决你的问题,请参考以下文章