Click or drag to resize

AvlTreeTKey, TValueEntry Structure

Represents AVL tree node.

Namespace:  RTMath.Containers
Assembly:  FinAnalysis (in FinAnalysis.dll) Version: 2.1.13-cc97e13414b71fde928e8f3a546ac1daf26f295f
Syntax
C#
public struct Entry

The AvlTreeTKey, TValueEntry generic type exposes the following members.

Constructors
Methods
  NameDescription
Public methodEquals
Indicates whether this instance and a specified object are equal.
(Inherited from ValueType.)
Public methodGetHashCode
Returns the hash code for this instance.
(Inherited from ValueType.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodToString
Returns the fully qualified type name of this instance.
(Inherited from ValueType.)
Top
Fields
  NameDescription
Public field_count
Number of children in the subtree rooted at this node.
Public field_height
Height of this node.
Public field_left
Reference to left child of this node.
Public field_parent
Reference to parent node of this node.
Public field_right
Reference to right child of this node.
Public fieldKey
Search key of this node.
Public fieldValue
Value associated with this node.
Top
See Also