Package | Description |
---|---|
edu.berkeley.cs186.database.index |
Modifier and Type | Method and Description |
---|---|
InnerEntry |
LeafNode.insertBEntry(LeafEntry ent)
Inserts a LeafEntry into this LeafNode.
|
InnerEntry |
InnerNode.insertBEntry(LeafEntry ent)
Inserts a LeafEntry into the corresponding LeafNode in this subtree.
|
InnerEntry |
BPlusNode.insertBEntry(LeafEntry ent)
Insert an entry into this node.
|
InnerEntry |
LeafNode.splitNode(BEntry newEntry)
Splits this LeafNode and returns the resulting InnerEntry to be
pushed/copied up to this LeafNode's parent as a result of the split.
|
InnerEntry |
InnerNode.splitNode(BEntry newEntry)
Splits this InnerNode and returns the resulting InnerEntry to be
pushed/copied up to this InnerNode's parent as a result of the split.
|
InnerEntry |
BPlusNode.splitNode(BEntry newEntry)
Split BPlusNode driven by new entries.
|
Copyright © 2017. All rights reserved.