2022-07-07 08:16:24 +08:00
# Leetcode Search-In-a-Binary-Tree
#### 2022-07-07 08:06
> ##### Algorithms:
2022-09-03 15:41:36 +08:00
>
2022-07-07 08:16:24 +08:00
> #algorithm #DFS #BFS
2022-09-03 15:41:36 +08:00
>
2022-07-07 08:16:24 +08:00
> ##### Data structures:
2022-09-03 15:41:36 +08:00
>
> #DS #binary_tree
>
2022-07-07 08:16:24 +08:00
> ##### Difficulty:
2022-09-03 15:41:36 +08:00
>
> #coding_problem #difficulty-easy
>
2022-07-07 08:16:24 +08:00
> ##### Additional tags:
2022-09-03 15:41:36 +08:00
>
> #leetcode
>
2022-07-07 08:16:24 +08:00
> ##### Revisions:
2022-09-03 15:41:36 +08:00
>
2022-07-07 08:16:24 +08:00
> N/A
##### Related topics:
2022-09-03 15:41:36 +08:00
2022-07-07 08:16:24 +08:00
##### Links:
2022-09-03 15:41:36 +08:00
2022-07-07 08:16:24 +08:00
- [Link to problem ](https://leetcode.com/problems/search-in-a-binary-search-tree/submissions/ )
2022-09-03 15:41:36 +08:00
---
2022-07-07 08:16:24 +08:00
### Problem
You are given the `root` of a binary search tree (BST) and an integer `val` .
Find the node in the BST that the node's value equals `val` and return the subtree rooted with that node. If such a node does not exist, return `null` .
#### Examples
Example 1:
Input: root = [4,2,7,1,3], val = 2
Output: [2,1,3]
Example 2:
Input: root = [4,2,7,1,3], val = 5
Output: []
#### Constraints
2022-09-03 15:41:36 +08:00
- The number of nodes in the tree is in the range `[1, 5000]` .
- `1 <= Node.val <= 107`
- `root` is a binary search tree.
- `1 <= val <= 107`
2022-07-07 08:16:24 +08:00
### Thoughts
> [!summary]
> This is a #DFS or #BFS problem. We search values in the tree.
2022-07-07 08:37:25 +08:00
In DFS, I use preorder, since the root value will be check first, making it quicker if data appear on shallow trees more.
In BFS, I don't have use for loop inside while loop, since we don't have to consider levels.
2022-07-07 08:16:24 +08:00
### Solution
DFS
2022-09-03 15:41:36 +08:00
2022-07-07 08:16:24 +08:00
```cpp
/**
* Definition for a binary tree node.
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode() : val(0), left(nullptr), right(nullptr) {}
* TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
* TreeNode(int x, TreeNode *left, TreeNode *right) : val(x), left(left),
* right(right) {}
* };
*/
class Solution {
public:
TreeNode *searchBST(TreeNode *root, int val) {
// DFS preorder
// Base cases
if (!root) {
return nullptr;
}
if (root->val == val) {
return root;
}
auto left = searchBST(root->left, val);
if (left) {
return left;
}
auto right = searchBST(root->right, val);
if (right) {
return right;
}
// left and right not found
return nullptr;
}
};
```
2022-09-03 15:41:36 +08:00
Which can be simplified to
2022-07-07 08:16:24 +08:00
```cpp
/**
* Definition for a binary tree node.
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode() : val(0), left(nullptr), right(nullptr) {}
* TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
* TreeNode(int x, TreeNode *left, TreeNode *right) : val(x), left(left), right(right) {}
* };
*/
class Solution {
public:
TreeNode* searchBST(TreeNode* root, int val) {
// DFS preorder
// Base cases
if (!root) {
return nullptr;
}
if (root->val == val) {
return root;
}
2022-09-03 15:41:36 +08:00
2022-07-07 08:16:24 +08:00
auto left = searchBST(root->left, val);
if (left) {
return left;
}
return searchBST(root->right, val);
}
};
```
BFS
2022-09-03 15:41:36 +08:00
2022-07-07 08:16:24 +08:00
```cpp
2022-07-07 08:37:25 +08:00
/**
* Definition for a binary tree node.
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode() : val(0), left(nullptr), right(nullptr) {}
* TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
* TreeNode(int x, TreeNode *left, TreeNode *right) : val(x), left(left),
* right(right) {}
* };
*/
class Solution {
public:
TreeNode *searchBST(TreeNode *root, int val) {
// BFS
queue< TreeNode * > pending;
pending.push(root);
TreeNode *ptr;
while (!pending.empty()) {
ptr = pending.front();
pending.pop();
if (ptr->val == val) {
return ptr;
}
if (ptr->left)
pending.push(ptr->left);
if (ptr->right)
pending.push(ptr->right);
}
2022-07-07 08:16:24 +08:00
2022-07-07 08:37:25 +08:00
return nullptr;
}
};
2022-09-03 15:41:36 +08:00
```