/**
* struct TreeNode {
* int val;
* struct TreeNode *left;
* struct TreeNode *right;
* TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
* };
*/
class Solution {
public:
/**
* 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
*
*
* @param root TreeNode类
* @return bool布尔型
*/
bool isValidBST(TreeNode* root) {
return helper(root, LONG_MAX, LONG_MIN);
// write code here
}
bool helper(TreeNode* root, long mx, long mn){
if(!root) return true;
if(root->val >= mx || root->val <= mn)
return false;
return helper(root->left, root->val, mn) && helper(root->right, mx, root->val);
}
};
https://www.cnblogs.com/grandyang/p/4298435.html

京公网安备 11010502036488号