ROOT 6.08/07 Reference Guide |
Public Member Functions | |
TBtLeafNode (TBtInnerNode *p, const TObject *obj=0, TBtree *t=0) | |
Constructor. More... | |
~TBtLeafNode () | |
Destructor. More... | |
void | Add (const TObject *obj, Int_t idx) |
Add the object OBJ to the leaf node, inserting it at location INDEX in the fItem array. More... | |
void | Append (TObject *obj) |
Never called from anywhere where it might fill up THIS does NOT handle nofKeys. More... | |
void | AppendFrom (TBtLeafNode *src, Int_t start, Int_t stop) |
A convenience function, does not worry about the element in the parent, simply moves elements from SRC[start] to SRC[stop] into the current array. More... | |
void | BalanceWith (TBtLeafNode *n, Int_t idx) |
PITEM is the parent item whose key will change when keys are shifted from one LeafNode to the other. More... | |
void | BalanceWithLeft (TBtLeafNode *l, Int_t idx) |
THIS has more than LEFTSIB; move some items from THIS to LEFTSIB. More... | |
void | BalanceWithRight (TBtLeafNode *r, Int_t idx) |
THIS has more than RIGHTSIB; move some items from THIS to RIGHTSIB. More... | |
Int_t | FindRank (const TObject *obj) const |
WHAT was not in any inner node; it is either here, or it's not in the tree. More... | |
TBtLeafNode * | FirstLeafNode () |
Return the first node. More... | |
TObject * | Found (const TObject *obj, TBtNode **which, Int_t *where) |
WHAT was not in any inner node; it is either here, or it's not in the tree. More... | |
TObject * | GetKey (Int_t idx) |
Int_t | IndexOf (const TObject *obj) const |
Returns a number in the range 0 to MaxIndex(). More... | |
Int_t | IsAlmostFull () const |
Int_t | IsFull () const |
Int_t | IsLow () const |
TBtLeafNode * | LastLeafNode () |
return the last node. More... | |
Int_t | MaxIndex () const |
Int_t | MaxPsize () const |
void | MergeWithRight (TBtLeafNode *r, Int_t idx) |
Merge. More... | |
Int_t | NofKeys (Int_t i) const |
Return the number of keys. More... | |
Int_t | NofKeys () const |
Return the number of keys. More... | |
TObject * | operator[] (Int_t i) const |
Int_t | Psize () const |
void | PushLeft (Int_t cnt, TBtLeafNode *l, Int_t parentIndex) |
noFromThis==1 => moves the parent item into the leftsib, and the first item in this's array into the parent item. More... | |
void | PushRight (Int_t cnt, TBtLeafNode *r, Int_t parentIndex) |
noFromThis==1 => moves the parent item into the rightsib, and the last item in this's array into the parent item. More... | |
void | Remove (Int_t idx) |
Remove an element. More... | |
void | RemoveItem (Int_t idx) |
void | SetKey (Int_t idx, TObject *obj) |
void | ShiftLeft (Int_t cnt) |
Shift. More... | |
void | Split () |
This function is called only when THIS is the only descendent of the root node, and THIS needs to be split. More... | |
void | SplitWith (TBtLeafNode *r, Int_t idx) |
Split. More... | |
Int_t | Vsize () const |
Public Member Functions inherited from TBtNode | |
TBtNode (Int_t isleaf, TBtInnerNode *p, TBtree *t=0) | |
Create a B-tree node. More... | |
virtual | ~TBtNode () |
Delete a B-tree node. More... | |
virtual TBtree * | GetParentTree () const |
Private Attributes | |
TObject ** | fItem |
Friends | |
class | TBtInnerNode |
Additional Inherited Members | |
Protected Attributes inherited from TBtNode | |
Int_t | fIsLeaf |
Int_t | fLast |
TBtInnerNode * | fParent |
TBtree * | fTree |
#include <TBtree.h>
TBtLeafNode::TBtLeafNode | ( | TBtInnerNode * | p, |
const TObject * | obj = 0 , |
||
TBtree * | t = 0 |
||
) |
Constructor.
Definition at line 1362 of file TBtree.cxx.
TBtLeafNode::~TBtLeafNode | ( | ) |
Destructor.
Definition at line 1375 of file TBtree.cxx.
Add the object OBJ to the leaf node, inserting it at location INDEX in the fItem array.
Implements TBtNode.
Definition at line 1384 of file TBtree.cxx.
Never called from anywhere where it might fill up THIS does NOT handle nofKeys.
Definition at line 1441 of file TBtree.cxx.
void TBtLeafNode::AppendFrom | ( | TBtLeafNode * | src, |
Int_t | start, | ||
Int_t | stop | ||
) |
A convenience function, does not worry about the element in the parent, simply moves elements from SRC[start] to SRC[stop] into the current array.
This should never create a full node. That is, it is not used anywhere where THIS could possibly be near full. Does NOT handle nofKeys.
Definition at line 1425 of file TBtree.cxx.
void TBtLeafNode::BalanceWith | ( | TBtLeafNode * | rightsib, |
Int_t | pidx | ||
) |
PITEM is the parent item whose key will change when keys are shifted from one LeafNode to the other.
Definition at line 1474 of file TBtree.cxx.
void TBtLeafNode::BalanceWithLeft | ( | TBtLeafNode * | l, |
Int_t | idx | ||
) |
THIS has more than LEFTSIB; move some items from THIS to LEFTSIB.
Definition at line 1451 of file TBtree.cxx.
void TBtLeafNode::BalanceWithRight | ( | TBtLeafNode * | r, |
Int_t | idx | ||
) |
THIS has more than RIGHTSIB; move some items from THIS to RIGHTSIB.
Definition at line 1462 of file TBtree.cxx.
WHAT was not in any inner node; it is either here, or it's not in the tree.
Implements TBtNode.
Definition at line 1486 of file TBtree.cxx.
|
virtual |
WHAT was not in any inner node; it is either here, or it's not in the tree.
Implements TBtNode.
Definition at line 1509 of file TBtree.cxx.
Returns a number in the range 0 to MaxIndex().
Definition at line 1532 of file TBtree.cxx.
|
virtual |
void TBtLeafNode::MergeWithRight | ( | TBtLeafNode * | r, |
Int_t | idx | ||
) |
Merge.
Definition at line 1553 of file TBtree.cxx.
Return the number of keys.
Definition at line 1566 of file TBtree.cxx.
|
virtual |
void TBtLeafNode::PushLeft | ( | Int_t | noFromThis, |
TBtLeafNode * | leftsib, | ||
Int_t | pidx | ||
) |
noFromThis==1 => moves the parent item into the leftsib, and the first item in this's array into the parent item.
Definition at line 1592 of file TBtree.cxx.
void TBtLeafNode::PushRight | ( | Int_t | noFromThis, |
TBtLeafNode * | rightsib, | ||
Int_t | pidx | ||
) |
noFromThis==1 => moves the parent item into the rightsib, and the last item in this's array into the parent item.
Definition at line 1611 of file TBtree.cxx.
Shift.
Definition at line 1678 of file TBtree.cxx.
|
virtual |
This function is called only when THIS is the only descendent of the root node, and THIS needs to be split.
Assumes that idx of THIS in Parent is 0.
Implements TBtNode.
Definition at line 1692 of file TBtree.cxx.
void TBtLeafNode::SplitWith | ( | TBtLeafNode * | r, |
Int_t | idx | ||
) |
Split.
Definition at line 1705 of file TBtree.cxx.
|
friend |