Structsยง
- Binary
Tree - A
BinaryTree
data structure that contains aTreeNode
and two optional child nodes (left
andright
) - Tree
Node - A tree node that holds a value of type
T
generic
BinaryTree
data structure that contains a TreeNode
and two
optional child nodes (left
and right
)T
generic