dastal - v5.0.0 / BinaryTreeNode
A binary tree node interface.
Each node links to its left and right child.
| Name |
|---|
T |
-
BinaryTreeNode
• Optional left: BinaryTreeNode<T>
A link to the node's left child.
• Optional right: BinaryTreeNode<T>
A link to the node's right child.
• value: T
The value of the node