加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 大数据 > 正文

700. Search in a Binary Search Tree

发布时间:2020-12-14 04:19:39 所属栏目:大数据 来源:网络整理
导读:700.?Search in a Binary Search Tree Given the root node of a binary search tree (BST) and a value. You need to find the node in the BST that the node‘s value equals the given value. Return the subtree rooted with that node. If such node d

700.?Search in a Binary Search Tree

Given the root node of a binary search tree (BST) and a value. You need to find the node in the BST that the node‘s value equals the given value. Return the subtree rooted with that node. If such node doesn‘t exist,you should return NULL.

For example,?

Given the tree:
        4
       /       2   7
     /     1   3

And the value to search: 2

You should return this subtree:

      2     
     /    
    1   3

In the example above,if we want to search the value?5,since there is no node with value?5,we should return?NULL.

Note that an empty tree is represented by?NULL,therefore you would see the expected output (serialized tree format) as?[],not?null.

#include <cstdio>

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

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读