jason 075d766964 first | 3 rokov pred | |
---|---|---|
.. | ||
.gitignore | 3 rokov pred | |
.travis.yml | 3 rokov pred | |
LICENSE | 3 rokov pred | |
README.md | 3 rokov pred | |
radix.go | 3 rokov pred | |
radix_test.go | 3 rokov pred |
Provides the radix
package that implements a radix tree.
The package only provides a single Tree
implementation, optimized for sparse nodes.
As a radix tree, it provides the following:
For an immutable variant, see go-immutable-radix.
The full documentation is available on Godoc.
Below is a simple example of usage
// Create a tree
r := radix.New()
r.Insert("foo", 1)
r.Insert("bar", 2)
r.Insert("foobar", 2)
// Find the longest prefix match
m, _, _ := r.LongestPrefix("foozip")
if m != "foo" {
panic("should be foo")
}