Tagged Questions
The zipper tag has no wiki summary.
29
votes
2answers
3k views
Cleaner way to update nested structures
Say I have got following two case classes:
case class Address(street: String, city: String, state: String, zipCode: Int)
case class Person(firstName: String, lastName: String, address: Address)
and ...
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
581 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 ...
7
votes
1answer
107 views
Type errors with Existential types in Haskell
I am struggling with existential types in my program. I think I'm trying to do something very reasonable however I cannot get past the typechecker :(
I have a datatype that sort of mimics a Monad
...
5
votes
1answer
199 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 ...
4
votes
2answers
634 views
returning multiple values using clojure xml zipper
Lets suppose we have some XML like so:
<a>
<b>
<c>text</c>
<d>
<e>text</e>
<f>
... lots of cruft here ..
</f>
...
3
votes
1answer
188 views
Effects of changing a node in a binary tree
Suppose I want to change the orange node in the following tree.
So, the only other change I'll need to make is in the left pointer of the green node.
The blue node will remain the same.
Am I ...
3
votes
2answers
670 views
Haskell: Creating Type Classes for Zippers
So I've been reading a bit about the Zipper pattern in Haskell (and other functional languages, I suppose) to traverse and modify a data structure, and I thought that this would be a good chance for ...
2
votes
0answers
86 views
Easy tree traversal and fast random node access
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 ...
2
votes
1answer
63 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 ...
2
votes
2answers
162 views
How do I format a tree so that it works with Clojure's zipper?
I am creating trees of s-expressions for a genetic programming problem, and need to alter parts of the trees during the evolution process. I came across the Clojure zipper function that seems like it ...
2
votes
1answer
482 views
Postorder tree traversal with clojure.zip to edit nodes
I have a tree represented as a nested vector. I want to have a generalization of indexed for trees, showing the index of each node like this,
(visit 42); => [0 42]
(visit [6 7]); => [0
...
1
vote
0answers
20 views
Locally editing a purely functional tree
Let's define a tree T:
A
/ \
B C
/ \
D E
Let's say a new node is added to E, yielding T':
A
/ \
B C
/ \
D E
\
G
In a mutable language this is an easy task ...