Class AVLTreeMultiMapNode<K, V>

Represents a node in a binary tree.

V> - The type of the family relationship in the binary tree.

Type Parameters

  • K = any
  • V = any

    The type of data stored in the node.

Hierarchy (view full)

Constructors

Constructors

  • This TypeScript constructor initializes an object with a key of type K and an array of values of type V.

    Type Parameters

    • K = any
    • V = any

    Parameters

    • key: K

      The key parameter is typically used to store a unique identifier or key for the data being stored in the data structure. It helps in quickly accessing or retrieving the associated value in the data structure.

    • value: V[]

      The value parameter in the constructor represents an array of values of type V.

    Returns AVLTreeMultiMapNode<K, V>