Be the first user to complete this post
|
Add to List |
Search the Element in a binary tree - With and Without Recursion
Objective: Given a binary tree and a given number x, Write a recursive algorithm to search the element in the tree.
This is one of the very basic problems of trees. If you are new to binary trees, this problem might help you to understand the tree. First, we will see the recursive solution then I will show you how to solve it without recursion.
Approach:
Recursive Approach:
The approach will be very simple, do any of the tree traversal(inorder, preorder, postorder, BFS or DFS) and check if the given element is present.
Code:
Does 4 exist in the tree: true Does 7 exist in the tree: false
Non-Recursive Approach:
- If we are not using recursion then we need a data structure to store the tree traversal, we will use a queue here
- Add root to the queue
- Check if the current node has the element we are looking for if yes then return true else add children nodes of the current node to the queue
- If queue gets empty, which means we have not found the element
Code:
Output:
Does 4 exist in the tree: true Does 7 exist in the tree: false
Also Read: