题解 | #判断是不是二叉搜索树#
判断是不是二叉搜索树
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) {
// write code here
if(!root) return false;
vector<int> ret;
inOrder(root, ret);
for(int i = 0; i < ret.size()-1; i++){
if(ret[i] > ret[i+1])
return false;
}
return true;
}
void inOrder(TreeNode* root, vector<int>& arr){
if(!root) return;
inOrder(root->left, arr);
arr.push_back(root->val);
inOrder(root->right, arr);
}
};