Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type BinarySearchTree ¶
type BinarySearchTree struct {
// contains filtered or unexported fields
}
func NewBinarySearchTree ¶
func NewBinarySearchTree() *BinarySearchTree
func (*BinarySearchTree) Add ¶
func (bst *BinarySearchTree) Add(val int)
func (*BinarySearchTree) Traverse ¶
func (bst *BinarySearchTree) Traverse(callback func(val int))
type OrderList ¶
type OrderList struct {
// contains filtered or unexported fields
}
func NewOrderList ¶
func NewOrderList() *OrderList
Click to show internal directories.
Click to hide internal directories.