判断是不是二叉搜索树_牛客题霸_牛客网 (nowcoder.com)
二叉搜索树满足每个节点的左子树上的所有节点均小于当前节点且右子树上的所有节点均大于当前节点。
递归去做 ,一段一段的去判断是否满足条件
/**
* 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 dfs(TreeNode* root,int l,int r){
if(root==nullptr) return true;
if(root->val < l || root->val > r) return false;
return dfs(root->left,l,root->val) && dfs(root->right,root->val,r);
}
bool isValidBST(TreeNode* root) {
// write code here
return dfs(root,INT_MIN,INT_MAX);
}
};