Edited after Alex Taggart's remark below.

I am using a zipper to easily traverse and edit a tree which can grow to many thousands of nodes. Each node is incomplete when it is first created. Data is going to be added/removed all the time in random positions, leaf nodes are going to be replaced by branches, etc.

The tree can be very unbalanced. Fast random access to a node is also important.

An implementation would be to traverse the tree using a zipper and create a hash table of the nodes indexed by key. Needless to say the above would be very inefficient as:

  • 2 copies of each node need to be created
  • any changes need to be consistently mirrored between the 2 data structures (tree and hashmap).

In short, is there a time/space efficient way to combine the easiness of traversing/updating with a zipper and the fast access of a hash table in clojure?

link|improve this question

A zipper isn't a data structure, it's a way to traverse and modify a data structure. Given that, your question doesn't quite make sense. Also, "efficient" is not well defined. – Alex Taggart Dec 25 '11 at 22:18
"Efficient" as in not having multiple copies of the same thing eating up memory and not having to update 2 data structures for each edit. – Stefanos Klironomos Dec 25 '11 at 22:41
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.