题目描述
判断是否为二叉搜索树
解题思路
中序遍历,看结果是否单调递增。
代码
/**
* 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布尔型
*/
void helper(TreeNode* root, vector<int> &rst)
{
if(!root) return;
helper(root->left, rst);
rst.push_back(root->val);
helper(root->right, rst);
}
bool isValidBST(TreeNode* root) {
// write code here
vector<int> rst;
helper(root, rst);
for(auto i = rst.begin(); i < rst.end() - 1; i++)
{
if(*(i+1) < *i) return false;
}
return true;
}
};