您的位置:首页 > 其它

Validate Binary Search Tree

2015-11-20 15:55 176 查看
问题
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.

解答
bool inorderl(struct TreeNode *root,int a)
{
if(root==NULL) return true;
if(root->val>a || root->val==a)
return false;
return inorderl(root->left,a)&&inorderl(root->right,a);
}

bool inorderr(struct TreeNode *root,int a)
{
if(root==NULL) return true;
if(root->val<a || root->val==a)
return false;
return inorderr(root->left,a)&&inorderr(root->right,a);
}
bool isleft(struct TreeNode *root,int a)
{
if(root==NULL) return true;
if(root!=NULL && root->left==NULL) return true;

return inorderl(root->left,a);

}
bool isright(struct TreeNode *root,int b)
{
if(root==NULL) return true;
if(root!=NULL && root->right==NULL) return true;

return inorderr(root->right,b);
}
bool isValidBST(struct TreeNode* root)
{
if(root==NULL) return true;
if(!root->left && !root->right) return true;
if(isleft(root,root->val)==false || isright(root,root->val)==false)
return false;

if(root->left && root->right)
return isValidBST(root->left)&&isValidBST(root->right);
if(root->left && !root->right)
return isValidBST(root->left);
if(!root->left && root->right)
return isValidBST(root->right);

}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  二叉树