Tagged Questions

16
votes
3answers
1k views

What is the Zipper data structure and should I be using it?

The question is simple: I cannot understand the Zipper data structure. My question is related to its uses with a Tree. I want to understand how can I change the tree node using zipper. And how not ...
12
votes
2answers
596 views

Zipper like data structure with more then one cursor

The Zipper data structure is great when one wants to traverse a tree and keep the current position, but what data structure one should use if they want to track more then one position? Let me explain ...
5
votes
1answer
203 views

How well do zippers perform in practice, and when should they be used?

I think that the zipper is a beautiful idea; it elegantly provides a way to walk a list or tree and make what appear to be local updates in a functional way. Asymptotically, the costs appear to be ...
2
votes
1answer
71 views

make-node in zipper library

I am trying to create a zipper from a map of my own. According to zipper definition, Usage: (zipper branch? children make-node root) the parameters branch? and children are clear and i am able to ...