TBTree Struct Reference

Detailed Description

The tree is defined recursively using nodes as basic blocks. Those nodes can be either a leave or an internal.

The recursive definition allows for an easy recursive implementation.

Note that tree includes only the central points and the identifiers of the charts and not the full charts themselves.

Definition at line 42 of file btree.h.

Data Fields

unsigned int m
 
double r
 
unsigned int * tp
 

Field Documentation

unsigned int TBTree::m

Dimension of the space where the tree is defined.

Definition at line 43 of file btree.h.

Referenced by AddChart2Btree(), InitBTree(), and SearchInBtree().

double TBTree::r

Radius used for the search for neighbours.

Definition at line 44 of file btree.h.

Referenced by InitBTree(), and SearchInBtree().

unsigned int* TBTree::tp

The topology for each variable

Definition at line 45 of file btree.h.

Referenced by AddChart2Btree(), DeleteBTree(), InitBTree(), and SearchInBtree().