Concept Flow - B-trees for databases
Start at root node
Is node leaf?
No→Find child pointer for key range
Move to child node
Search keys in node
Key found?
Yes→Return record or pointer
No
If leaf, key not found
End
The search starts at the root, moves down child nodes by key ranges, and ends at a leaf node where the key is found or confirmed missing.