Package | Description |
---|---|
edu.berkeley.cs186.database.index |
Modifier and Type | Method and Description |
---|---|
BPlusTree |
BPlusNode.getTree()
Retrieve the BPlusTree that this BPlusNode belongs to.
|
Modifier and Type | Method and Description |
---|---|
static BPlusNode |
BPlusNode.getBPlusNode(BPlusTree tree,
int pageNum)
Return an existing Node from a BPlusTree and pageNum.
|
Constructor and Description |
---|
BPlusNode(BPlusTree tree,
boolean isLeaf)
Abstract constructor for BPlusNode for new nodes.
|
BPlusNode(BPlusTree tree,
int pageNum,
boolean isLeaf)
Abstract constructor for BPlusNode for existing nodes.
|
InnerNode(BPlusTree tree) |
InnerNode(BPlusTree tree,
int pageNum) |
LeafNode(BPlusTree tree) |
LeafNode(BPlusTree tree,
int pageNum) |
Copyright © 2017. All rights reserved.