700. Search in a Binary Search Tree
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? Note that an empty tree is represented by? #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); } }; (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |