Solution:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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: | |
void helper(TreeNode* root, double target, double& closestV){ | |
if(root==NULL) | |
return; | |
closestV=fabs(target-root->val)<=fabs(closestV-target)? root->val:closestV; | |
if(target>root->val) | |
helper(root->right, target, closestV); | |
if(target<root->val) | |
helper(root->left, target, closestV); | |
} | |
int closestValue(TreeNode* root, double target) { | |
if(root==NULL) | |
return 0; | |
double closestV=double(INT_MAX)*10; | |
helper(root, target, closestV); | |
return int(closestV); | |
} | |
}; |
No comments:
Post a Comment