LeetCode--Validate Binary Search Tree(验证二叉搜索树)C++

题目描述:Given a binary tree, determine if it is a valid binary search tree (BST).

Assume a BST is defined as follows:

The left subtree of a node contains only nodes with keys less than the node’s key.
The right subtree of a node contains only nodes with keys greater than the node’s key.
Both the left and right subtrees must also be binary search trees.

这里写图片描述

题目翻译:
给定一个二叉树,确定它是否是一个有效的二叉查找树(BST)。
假定一个BST的定义如下:
一个节点的左子树只包含值小于该节点值的节点。
一个节点的右子树只包含值大于该节点值的节点。
左子树和右子树也必须是二叉查找树。

思路分析,本题我们使用递归的思,代码实现如下:

/**
 * Definition for binary tree
 * struct TreeNode {
 *     int val;
 *     TreeNode *left;
 *     TreeNode *right;
 *     TreeNode(int x) : val(x), left(NULL), right(NULL) {}
 * };
 */
class Solution {
public:
    bool isValidBST(TreeNode *root) 
    {
        return isValid(root,INT_MIN,INT_MAX);
    }
    bool isValid(TreeNode* root,int min,int max)
    {
        if(root == NULL)
            return true;

        return root->val > min && root->val < max && 
                isValid(root->left,min,root->val) &&
                 isValid(root->right,root->val,max);
    }
};

猜你喜欢

转载自blog.csdn.net/cherrydreamsover/article/details/81840856
今日推荐