LeetCode 98. Validate Binary Search Tree

最容易想到的思路就是中序遍历,然后看是不是递增数列。

也可以像下面这样,用最大最小值区间来判断

class Solution {
public:
    bool helper(TreeNode* node,long mn,long mx){
        if(!node)
            return true;
        
        if(node->val<=mn || node->val>=mx)
            return false;
        
        return helper(node->left,mn,node->val) && helper(node->right,node->val,mx);
    }
    
    bool isValidBST(TreeNode* root) {
        return helper(root,LONG_MIN,LONG_MAX);
    }
};

相关文章

自1998年我国取消了福利分房的政策后,房地产市场迅速开展蓬...
文章目录获取数据查看数据结构获取数据下载数据可以直接通过...
网上商城系统MySql数据库设计
26个来源的气象数据获取代码
在进入21世纪以来,中国电信业告别了20世纪最后阶段的高速发...