Concept Flow - Searching in BST
Start at root node
Compare target with current node value
Found target, stop
Go to left child
Go to right child
Is child node null?
Yes→Target not found, stop
No
Repeat comparison at new node
Start at the root and compare the target value with the current node. Move left if target is smaller, right if larger, until found or no child exists.