面试必考精华版Leetcode700. 二叉搜索树中的搜索

题目:

面试必考精华版Leetcode700. 二叉搜索树中的搜索_第1张图片


代码(首刷看解析):

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

你可能感兴趣的:(#,leetcode,---,easy,前端,算法,javascript)