Click or drag to resize

AvlTreeTKey, TValueEntry Constructor

Create new AVL tree node.

Namespace:  RTMath.Containers
Assembly:  FinAnalysis (in FinAnalysis.dll) Version: 2.1.13-cc97e13414b71fde928e8f3a546ac1daf26f295f
Syntax
C#
public Entry(
	TKey Key,
	TValue Value,
	int _parent,
	int _left,
	int _right,
	int _height,
	int _count
)

Parameters

Key
Type: TKey
Search key of this node.
Value
Type: TValue
Value associated with this key.
_parent
Type: SystemInt32
Reference to parent node.
_left
Type: SystemInt32
Reference to left child of this node.
_right
Type: SystemInt32
Reference to right child of this node.
_height
Type: SystemInt32
Height of this node.
_count
Type: SystemInt32
Number of children in the subtree rooted at this node.
See Also