Implement a C++ program to store Strings in Binary Search tree. Your program should have following functions:
- Insert
- Display
- Search
Data structures in C++
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Steps:
Create a Node structure that has a left and right pointer to point to the left and right child nodes.
Create a BST using recursion. While insertion the value is checked with the root value. If the value is lesser than the root we move to the left subtree else to the right subtree. This continues until an empty place is found to place the new node.
The display function displays the nodes of the tree in an inorder fashion this is left root right.
The search function returns NULL if no such target is found else returns the node with the target value.