A B+ tree of order m must meet the following conditions:
Each branch node has at most m subtrees (child nodes)
A non-leaf root node has at least two subtrees, and each other branch node has at least
(
m
/
2
)
(m/2)
(m/2) Tree
The number of subtrees of a node is equal to the number of keywords
allLeaf nodes contain all keywordsand pointers to corresponding records. The keywords are arranged in order of size in the leaf nodes, andAdjacent leaf nodes are connected to each other in order of size(That is, it supports sequential search) In a B+ tree, regardless of whether the search is successful or not, you must eventually reach the bottom node.