Concept Flow - Why BST enables efficient searching
Start at root node
Compare target with node value
Go to left
Node is target?
Return found
Not found if no child
Start at the root, compare the target with current node, go left if smaller, right if larger, repeat until found or no child.