Class AVLTreeNode<T>

Type Parameters

  • T

Hierarchy

Constructors

Properties

_count: number = 1
_familyPosition: FamilyPosition = FamilyPosition.root
_height: number = 0
_id: number
_left?: null | BinaryTreeNode<T>
_parent: undefined | null | BinaryTreeNode<T>
_right?: null | BinaryTreeNode<T>
_val: T

Accessors

Methods

Generated using TypeDoc