Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Tree ¶
type Tree[K comparable] struct { // contains filtered or unexported fields }
func New ¶
func New[K comparable](rootVal K) *Tree[K]
type TreeNode ¶
type TreeNode[K comparable] struct { Left *TreeNode[K] Right *TreeNode[K] Val K }
Click to show internal directories.
Click to hide internal directories.