#include <AVLNode.h>
Public Member Functions | |
AVLNode (Data *data) | |
Constructor. | |
virtual | ~AVLNode () |
Destructor - doesn't delete left and right nodes. | |
Public Attributes | |
AVLNode< Data > * | m_Left |
Pointer to the left node. | |
AVLNode< Data > * | m_Right |
Pointer to the right node. | |
Data * | m_Data |
Pointer to the data in the node. | |
signed char | m_Balance |
Balance of the node - used to rebranch tree. |
Definition at line 14 of file AVLNode.h.