In computer science, an (a,b) tree is a specific kind of search tree.
An (a,b) tree has all of its leaves at the same depth, and all internal nodes have between a and b children, where a and b are integers such that
. The root may have as few as zero children.
|
Contents
|
Let
such that
. Then a tree T is an (a,b) tree when:
Every inner node v has the following representation:
be pointers to child nodes.
be an array of keys such that Hv[i] equals the largest key in the subtree pointed to by Sv[i].
|
||||||||||||||||||||||||||
| This algorithms or data structures-related article is a stub. You can help Wikipedia by expanding it. |
This entry is from Wikipedia, the leading user-contributed encyclopedia. It may not have been reviewed by professional editors (see full disclaimer)