Helios++
Helios software for LiDAR simulations
|
Binary tree node interface that must be implemented by any class providing binary tree node based functionalities. More...
#include <IBinaryTreeNode.h>
Public Member Functions | |
virtual IBinaryTreeNode * | getLeftChild () const =0 |
Obtain the left child of current node. More... | |
virtual IBinaryTreeNode * | getRightChild () const =0 |
Obtain the right child of current node. More... | |
virtual bool | isLeafNode () const |
Check whether current node is a leaf node (true) or not (false) More... | |
Binary tree node interface that must be implemented by any class providing binary tree node based functionalities.
|
pure virtual |
Obtain the left child of current node.
Implemented in LightKDTreeNode, and UnivarExprTreeNode< NumericType >.
|
pure virtual |
Obtain the right child of current node.
Implemented in LightKDTreeNode, and UnivarExprTreeNode< NumericType >.
|
inlinevirtual |
Check whether current node is a leaf node (true) or not (false)
Reimplemented in UnivarExprTreeNode< NumericType >.