Key
- the type of the keys stored in this B+ tree. This type has to
implement the Comparable interface.public class BPTree<Key extends Comparable<Key>> extends Object
BPNode
Constructor and Description |
---|
BPTree(int degree)
Constructs an empty B+ tree of a specified node degree, i.e., m.
|
public BPTree(int degree)
degree
- the node degree of this B+ tree node (i.e., m)