Who can resist a good trie pun?

I put my combined ART (adaptive radix trie) + Order-Statistics tree
up on github.  It is a nice sorted key/value alternative to red-black 
trees. 

Some unique features:

You can iterate and delete at the same time. I tend to need to do this 
often.
Especially deleting the key that I've just found.

You can access the tree like a slice: tree.At(i) will give you the i-th 
element in the lexicographic sorted []byte keys. Almost as if you had said 
tree[i], were tree a slice.

https://github.com/glycerine/uart

Feedback welcome.

Enjoy.
Jason


-- 
You received this message because you are subscribed to the Google Groups 
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to golang-nuts+unsubscr...@googlegroups.com.
To view this discussion visit 
https://groups.google.com/d/msgid/golang-nuts/5f37ea12-4bfe-4329-bcee-a4c66fb58abbn%40googlegroups.com.

Reply via email to