ST_AVL_NODE (Struct)

Node for AVL Tree.

Fields

Name

Type

Description

Data

T_Generic

Stored data.

Height

T_Position

Height of the node.

pParent

POINTER TO ST_AVL_NODE

Pointer to parent node.

pLeft

POINTER TO ST_AVL_NODE

Pointer to left node.

pRight

POINTER TO ST_AVL_NODE

Pointer to right node.