题解 | #判断是不是二叉搜索树#
判断是不是二叉搜索树
https://www.nowcoder.com/practice/a69242b39baf45dea217815c7dedb52b
/** * struct TreeNode { * int val; * struct TreeNode *left; * struct TreeNode *right; * }; */ /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param root TreeNode类 * @return bool布尔型 */ #include <stdbool.h> int max = 0; struct TreeNode* t = NULL; // 储存最右叶子节点的根节点 bool is(struct TreeNode* root){ // write code here if(root==NULL)return true; max=root->val; bool l=is(root->left); if(root->val<max) return false; else max=root->val; if(root->right != NULL) t = root; bool r=is(root->right); return r&&l; } bool isValidBST(struct TreeNode* root ) { // write code here bool i = is(root); if(t!= NULL && t->val > max) i = false;//没有这一步就无法比较最右叶子节点值和其根节点值的大小 return i; }