Documentation
¶
Overview ¶
Package radixtree implements an Adaptive Radix Tree, aka compressed trie or compact prefix tree. It is adaptive in the sense that nodes are not constant size, having as few or many children as needed to branch to all subtrees.
This package implements a radix-256 tree where each key symbol (radix) is a byte, allowing up to 256 possible branches to traverse to the next node.
The implementation is optimized for read performance and allocates zero bytes of heap memory for read oprations. Once the radix tree is built, it can be repeatedly searched quickly. Concurrent searches are safe since these do not modify the radixtree. Access is not synchronized (not concurrent safe with writes), allowing the caller to synchronize, if needed, in whatever manner works best for the application.
The API uses string keys, since strings are immutable and therefore it is not necessary make a copy of the key provided to the radix tree.
Index ¶
- type InspectFunc
- type Item
- type Stepper
- type Tree
- func (t *Tree[T]) Delete(key string) bool
- func (t *Tree[T]) DeletePrefix(prefix string) bool
- func (t *Tree[T]) Get(key string) (T, bool)
- func (t *Tree[T]) Inspect(inspectFn InspectFunc[T])
- func (t *Tree[T]) Iter() iter.Seq2[string, T]
- func (t *Tree[T]) IterAt(key string) iter.Seq2[string, T]
- func (t *Tree[T]) IterPath(key string) iter.Seq2[string, T]
- func (t *Tree[T]) Len() int
- func (t *Tree[T]) NewStepper() *Stepper[T]
- func (t *Tree[T]) Put(key string, value T) bool
Examples ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type InspectFunc ¶
type InspectFunc[T any] func(link, prefix, key string, depth, children int, hasValue bool, value T) bool
InspectFunc is the type of the function called for each node visited by Inspect. The key argument contains the key at which the node is located, the depth is the distance from the root of the tree, and children is the number of children the node has.
If the function returns true Inspect stops immediately and returns.
type Stepper ¶ added in v0.3.0
type Stepper[T any] struct { // contains filtered or unexported fields }
Stepper traverses a Tree one byte at a time.
Any modification to the tree invalidates the Stepper.
func (*Stepper[T]) Copy ¶ added in v0.3.0
Copy makes a copy of the current Stepper. This allows branching a Stepper into two that can take separate paths. These Steppers do not affect each other and can be used concurrently.
func (*Stepper[T]) Item ¶ added in v0.3.2
Item returns an Item containing the key and value at the current Stepper position, or returns nil if no value is present at the position.
func (*Stepper[T]) Next ¶ added in v0.3.0
Next advances the Stepper from its current position, to the position of given key symbol in the tree, so long as the given symbol is next in a path in the tree. If the symbol allows the Stepper to advance, then true is returned. Otherwise false is returned.
When false is returned the Stepper is not modified. This allows different values to be used in subsequent calls to Next.
type Tree ¶ added in v0.3.0
type Tree[T any] struct { // contains filtered or unexported fields }
Tree is a radix tree of bytes keys and any values.
func (*Tree[T]) Delete ¶ added in v0.3.0
Delete removes the value associated with the given key. Returns true if there was a value stored for the key. If the node or any of its ancestors becomes childless as a result, they are removed from the tree.
func (*Tree[T]) DeletePrefix ¶ added in v0.3.1
DeletePrefix removes all values whose key is prefixed by the given prefix. Returns true if any values were removed.
func (*Tree[T]) Get ¶ added in v0.3.0
Get returns the value stored at the given key. Returns false if there is no value present for the key.
func (*Tree[T]) Inspect ¶ added in v0.3.0
func (t *Tree[T]) Inspect(inspectFn InspectFunc[T])
Inspect walks every node of the tree, whether or not it holds a value, calling inspectFn with information about each node. This allows the structure of the tree to be examined and detailed statistics to be collected.
If inspectFn returns false, the traversal is stopped and Inspect returns.
The tree is traversed in lexical order, making the output deterministic.
func (*Tree[T]) Iter ¶ added in v0.4.0
Iter visits all nodes in the tree, yielding the key and value of each.
The tree is traversed in lexical order, making the output deterministic.
Example ¶
package main import ( "fmt" "github.com/gammazero/radixtree" ) func main() { rt := radixtree.New[int]() rt.Put("mercury", 1) rt.Put("venus", 2) rt.Put("earth", 3) rt.Put("mars", 4) // Find all items that that have a key that is a prefix of "tomato". for key, value := range rt.Iter() { fmt.Println(key, "=", value) } }
Output: earth = 3 mars = 4 mercury = 1 venus = 2
func (*Tree[T]) IterAt ¶ added in v0.4.0
IterAt visits all nodes whose keys match or are prefixed by the specified key, yielding the key and value of each. An empty key "" to visits all nodes, and is the same as calling Iter.
The tree is traversed in lexical order, making the output deterministic.
Example ¶
package main import ( "fmt" "github.com/gammazero/radixtree" ) func main() { rt := radixtree.New[string]() rt.Put("tomato", "TOMATO") rt.Put("tom", "TOM") rt.Put("tommy", "TOMMY") rt.Put("tornado", "TORNADO") // Find all items whose keys start with "tom". for _, value := range rt.IterAt("tom") { fmt.Println(value) } }
Output: TOM TOMATO TOMMY
func (*Tree[T]) IterPath ¶ added in v0.4.0
IterPath returns an iterator that visits each node along the path from the root to the node at the given key. yielding the key and value of each.
The tree is traversed in lexical order, making the output deterministic.
Example ¶
package main import ( "fmt" "github.com/gammazero/radixtree" ) func main() { rt := radixtree.New[string]() rt.Put("tomato", "TOMATO") rt.Put("tom", "TOM") rt.Put("tommy", "TOMMY") rt.Put("tornado", "TORNADO") // Find all items that that have a key that is a prefix of "tomato". for key, value := range rt.IterPath("tomato") { fmt.Println(key, "=", value) } }
Output: tom = TOM tomato = TOMATO
func (*Tree[T]) NewStepper ¶ added in v0.3.0
NewStepper returns a new Stepper instance that begins at the root of the tree.
Example ¶
package main import ( "fmt" "github.com/gammazero/radixtree" ) func main() { rt := radixtree.New[string]() rt.Put("tomato", "TOMATO") rt.Put("tom", "TOM") rt.Put("tommy", "TOMMY") rt.Put("tornado", "TORNADO") stepper := rt.NewStepper() word := "tomato" for i := range word { if !stepper.Next(word[i]) { break } if val, ok := stepper.Value(); ok { fmt.Println(val) } } }
Output: TOM TOMATO