Skip to content

shaoliming1/radix-tree

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 

Repository files navigation

radix tree

it's a radix tree implemented by Golang.

example

package main

import (
	"fmt"
	radix_tree "github.com/shaoliming1/radix-tree"
)

func main()  {
	t :=radix_tree.NewRadixTree()
	t.Insert("foo", 1)
	t.Insert("foobar", 2)
	t.Insert("make",3)
	ret := t.Find("foo")
	t.Delete("foo")
	fmt.Print(ret)
}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages