Skip to content

Latest commit

 

History

History
65 lines (35 loc) · 1.14 KB

File metadata and controls

65 lines (35 loc) · 1.14 KB

dastal - v5.0.0 / BinaryTreeNode

Interface: BinaryTreeNode<T>

A binary tree node interface.

Each node links to its left and right child.

Type parameters

Name
T

Hierarchy

Table of contents

Properties

Properties

left

Optional left: BinaryTreeNode<T>

A link to the node's left child.

Defined in

src/tree/binaryTreeNode.ts:10


right

Optional right: BinaryTreeNode<T>

A link to the node's right child.

Defined in

src/tree/binaryTreeNode.ts:14


value

value: T

The value of the node

Defined in

src/tree/binaryTreeNode.ts:18