题解 | #判断是不是二叉搜索树#
判断是不是二叉搜索树
http://www.nowcoder.com/practice/a69242b39baf45dea217815c7dedb52b
/** * 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