38 #ifndef FCL_BROADPHASE_DETAIL_INTERVALTREENODE_INL_H 39 #define FCL_BROADPHASE_DETAIL_INTERVALTREENODE_INL_H 62 : stored_interval (new_interval),
63 key(new_interval->low),
64 high(new_interval->high),
83 std::cout <<
", k = " <<
key <<
", h = " <<
high <<
", mH = " <<
max_high;
84 std::cout <<
" l->key = ";
85 if(
left == nil) std::cout <<
"nullptr";
else std::cout <<
left->
key;
86 std::cout <<
" r->key = ";
87 if(
right == nil) std::cout <<
"nullptr";
else std::cout <<
right->
key;
88 std::cout <<
" p->key = ";
89 if(
parent == root) std::cout <<
"nullptr";
else std::cout <<
parent->
key;
90 std::cout <<
" red = " << (int)
red << std::endl;
IntervalTreeNode()
Create an empty node.
bool red
red or black node: if red = false then the node is black
void print(IntervalTreeNode *left, IntervalTreeNode *right) const
Print the interval node information: set left = nil and right = root.
Interval trees implemented using red-black-trees as described in the book Introduction_To_Algorithms_...
The node for interval tree.
SimpleInterval< S > * stored_interval
interval stored in the node
IntervalTreeNode * parent
template class FCL_EXPORT IntervalTreeNode< double >