A binary tree where every node's left subtree has values less than the node's value, and every right subtree has values greater. A new node is added as a leaf.Consider the following list of keys:
KF FB SD CL HN PA WS AX DE FT JD NR RF TK YJ
This list can be expressed as a binary search tree on the right. |
Thus, the running time of the search is O(h), where h is the height of the tree. Therefore, a binary search is not fast enough for disk resident indexing.