码迷,mamicode.com
首页 > 其他好文 > 详细

leetcode_num98_Validate Binary Search Tree

时间:2015-04-01 23:51:43      阅读:130      评论:0      收藏:0      [点我收藏+]

标签:c++   leetcode      

判断是否为二叉搜索树

定义上下确界

/**
 * 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 isValidBSTRe(root,LONG_MIN,LONG_MAX);//LONG_MIN,LONG_MAX set the bound
    }
    bool isValidBSTRe(TreeNode *root,long min,long max){//parameter type long
        if(!root)
            return true;
        else if(root->val<=min||root->val>=max)
            return false;
        else
            return isValidBSTRe(root->left,min,root->val)&&isValidBSTRe(root->right,root->val,max);
    }
};


leetcode_num98_Validate Binary Search Tree

标签:c++   leetcode      

原文地址:http://blog.csdn.net/eliza1130/article/details/44816115

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!