coal  3.0.1
Coal, The Collision Detection Library. Previously known as HPP-FCL, fork of FCL -- The Flexible Collision Library
coal::detail::IntervalTree Class Reference

Interval tree. More...

#include <coal/broadphase/detail/interval_tree.h>

Collaboration diagram for coal::detail::IntervalTree:

Public Member Functions

 IntervalTree ()
 
 ~IntervalTree ()
 
void print () const
 Print the whole interval tree. More...
 
SimpleIntervaldeleteNode (IntervalTreeNode *node)
 Delete one node of the interval tree. More...
 
void deleteNode (SimpleInterval *ivl)
 delete node stored a given interval More...
 
IntervalTreeNodeinsert (SimpleInterval *new_interval)
 Insert one node of the interval tree. More...
 
IntervalTreeNodegetPredecessor (IntervalTreeNode *node) const
 get the predecessor of a given node More...
 
IntervalTreeNodegetSuccessor (IntervalTreeNode *node) const
 Get the successor of a given node. More...
 
std::deque< SimpleInterval * > query (Scalar low, Scalar high)
 Return result for a given query. More...
 

Protected Member Functions

void leftRotate (IntervalTreeNode *node)
 left rotation of tree node More...
 
void rightRotate (IntervalTreeNode *node)
 right rotation of tree node More...
 
void recursiveInsert (IntervalTreeNode *node)
 Inserts node into the tree as if it were a regular binary tree. More...
 
void recursivePrint (IntervalTreeNode *node) const
 recursively print a subtree More...
 
IntervalTreeNoderecursiveSearch (IntervalTreeNode *node, SimpleInterval *ivl) const
 recursively find the node corresponding to the interval More...
 
void fixupMaxHigh (IntervalTreeNode *node)
 Travels up to the root fixing the max_high fields after an insertion or deletion. More...
 
void deleteFixup (IntervalTreeNode *node)
 

Protected Attributes

IntervalTreeNoderoot
 
IntervalTreeNodeinvalid_node
 

Detailed Description

Interval tree.

Constructor & Destructor Documentation

◆ IntervalTree()

coal::detail::IntervalTree::IntervalTree ( )

◆ ~IntervalTree()

coal::detail::IntervalTree::~IntervalTree ( )

Member Function Documentation

◆ deleteFixup()

void coal::detail::IntervalTree::deleteFixup ( IntervalTreeNode node)
protected

◆ deleteNode() [1/2]

SimpleInterval* coal::detail::IntervalTree::deleteNode ( IntervalTreeNode node)

Delete one node of the interval tree.

◆ deleteNode() [2/2]

void coal::detail::IntervalTree::deleteNode ( SimpleInterval ivl)

delete node stored a given interval

◆ fixupMaxHigh()

void coal::detail::IntervalTree::fixupMaxHigh ( IntervalTreeNode node)
protected

Travels up to the root fixing the max_high fields after an insertion or deletion.

◆ getPredecessor()

IntervalTreeNode* coal::detail::IntervalTree::getPredecessor ( IntervalTreeNode node) const

get the predecessor of a given node

◆ getSuccessor()

IntervalTreeNode* coal::detail::IntervalTree::getSuccessor ( IntervalTreeNode node) const

Get the successor of a given node.

◆ insert()

IntervalTreeNode* coal::detail::IntervalTree::insert ( SimpleInterval new_interval)

Insert one node of the interval tree.

◆ leftRotate()

void coal::detail::IntervalTree::leftRotate ( IntervalTreeNode node)
protected

left rotation of tree node

◆ print()

void coal::detail::IntervalTree::print ( ) const

Print the whole interval tree.

◆ query()

std::deque<SimpleInterval*> coal::detail::IntervalTree::query ( Scalar  low,
Scalar  high 
)

Return result for a given query.

◆ recursiveInsert()

void coal::detail::IntervalTree::recursiveInsert ( IntervalTreeNode node)
protected

Inserts node into the tree as if it were a regular binary tree.

◆ recursivePrint()

void coal::detail::IntervalTree::recursivePrint ( IntervalTreeNode node) const
protected

recursively print a subtree

◆ recursiveSearch()

IntervalTreeNode* coal::detail::IntervalTree::recursiveSearch ( IntervalTreeNode node,
SimpleInterval ivl 
) const
protected

recursively find the node corresponding to the interval

◆ rightRotate()

void coal::detail::IntervalTree::rightRotate ( IntervalTreeNode node)
protected

right rotation of tree node

Member Data Documentation

◆ invalid_node

IntervalTreeNode* coal::detail::IntervalTree::invalid_node
protected

◆ root

IntervalTreeNode* coal::detail::IntervalTree::root
protected

The documentation for this class was generated from the following file: