public class BTree<Key extends Comparable<Key>,Value>
extends Object
Compilation: javac BTree.java
Execution: java BTree
B-tree.
Limitations
-----------
- Assumes M is even and M >= 4
- should b be an array of children or list (it would help with
casting to make it a list)