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

leetcode700

时间:2018-09-27 19:18:30      阅读:204      评论:0      收藏:0      [点我收藏+]

标签:int   tco   sea   ==   leetcode   turn   col   etc   ret   

class Solution {
public:
    TreeNode* searchBST(TreeNode* root, int val) {
        if (root == NULL)
        {
            return nullptr;
        }
        if (root->val == val)
        {
            return root;
        }
        else if (root->val > val)
        {
            return searchBST(root -> left, val);
        }
        else//root->val>val 
        {
            return searchBST(root->right, val);
        }
    }
};

 

leetcode700

标签:int   tco   sea   ==   leetcode   turn   col   etc   ret   

原文地址:https://www.cnblogs.com/asenyang/p/9714956.html

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