Documentation ¶
Overview ¶
Package avl provides an implementation of an AVL tree. An AVL tree is a self-balancing binary search tree. It stores key-value pairs that are sorted based on the key, and maintains that the tree is always balanced, ensuring logarithmic-time for all operations.
Example ¶
package main import ( "fmt" g "github.com/fufuok/utils/generic" "github.com/fufuok/utils/generic/avl" ) func main() { tree := avl.New[int, string](g.Less[int]) tree.Put(42, "foo") tree.Put(-10, "bar") tree.Put(0, "baz") tree.Put(10, "quux") tree.Remove(10) tree.Each(func(key int, val string) { fmt.Println(key, val) }) }
Output: -10 bar 0 baz 42 foo
Index ¶
Examples ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Tree ¶
type Tree[K, V any] struct { // contains filtered or unexported fields }
Tree implements an AVL tree.
func (*Tree[K, V]) Each ¶
func (t *Tree[K, V]) Each(fn func(key K, val V))
Each calls 'fn' on every node in the tree in order
func (*Tree[K, V]) Put ¶
func (t *Tree[K, V]) Put(key K, value V)
Put associates 'key' with 'value'.
Click to show internal directories.
Click to hide internal directories.