Workings of Control Unit
Workings of Control Unit
SEARCH TREE
NAMAN JAIN
23/CS/24
INTRODUCTIO
N
What are search Trees?
A search tree is a data structure that stores elements
in a sorted manner, allowing for effi cient retrieval,
insertion, and deletion.
1. Start from the root and compare the value to be inserted with
the current node.
2. If the value is less than the current node, move to the left
child; if greater, move to the right child.