The tag has no wiki summary.

learn more… | top users | synonyms

15
votes
1answer
289 views

Idiomatic Scala translation of Kiselyov's zippers?

Oleg Kiselyov showed how to make a zipper from any traversable by using delimited continuations. His Haskell code is quite short: module ZipperTraversable where import qualified Data.Traversable ...
9
votes
2answers
178 views

Making a grid-like data type in haskell

Problem I've been wondering how this could be done efficiently for a while, but for some reason I have been unable to do it. I need to model a rectangular grid, where each field contains some data. ...
1
vote
1answer
110 views

zipper effect using php/jQuery like “zipper google doodle”

Would it be possible to make a zipper effect on the page using jquery rather than flash? for example the following but without flash (and sitting vertically): ...
3
votes
1answer
112 views

Clojure Zipper of nested Maps repressing a TRIE

How can I create a Clojure zipper for a TRIE, represented by nested maps, were the keys are the letters.? Something like this: {\b {\a {\n {\a {\n {\a {'$ '$}}}}}} \a {\n {\a {'$ '$}}}} ...
0
votes
1answer
126 views

Clojure: Using zippers to pull value from xml

I've been banging my head on this, it is probably something banal (or not). Here it is - I want to pull some values from xml. Here is my program (it should be refactored, this is a working version) ...
0
votes
1answer
70 views

ord function execution in loop

I have two folders, and each folde contains 196 files, they all are in ('\xae\xae\xb4\x9e\x8f\x9f\xba\xc1\xd5\xbd\xcd\xa1\xb7\') format. I am trying to read this data convert it into human readable ...
-1
votes
1answer
96 views

list has no attribute write [closed]

I have two folders containing 196 files each, I have to read the data from each files and write it into new 196 output files.I have two issues regarding it: In my inpt(list) the elements should be ...
3
votes
1answer
444 views

Clojure Zipper over a heterogeneous tree

I'm having problems writing a zipper that can traverse a heterogeneous tree of nodes. I have i) a list of maps. Each map has ii) an :inputs key, whose value is a list of maps. I want to use a zipper ...
0
votes
1answer
84 views

Generalise methods on Zipper with different types for current element and left/right lists

I'm toying around with zippers, where the current element can have a different type than the left and right lists: data Z a b = Z ([a], b, [a]) One can navigate the zipper with moveLeft and ...
8
votes
1answer
415 views

Zipper data structure for graphical model editor

I'm writing a graphical editor for a "model" (i.e. a collection of boxes and lines with some kind of semantics, such as UML, the details of which don't matter here). So I want to have a data structure ...
2
votes
1answer
157 views

Multiple zippers on big structure using Haskell [duplicate]

Possible Duplicate: Zipper like data structure with more then one cursor Let T a big tree (or another big data structure). Suppose you have some interest points in it (P = {p1, p2, ...} ...
7
votes
2answers
275 views

How to navigate up inside a HUET Zipper

I'm reading Huet Zipper, I cannot understand the go_up method: let go_up (Loc(t,p)) = match p with Top -> failwith "up of top" | Node(left,up,right) -> Loc(Section((rev left) @ ...
5
votes
2answers
281 views

Haskell Zipper for ADT with many constructors

I have a few ADT's that represent a simple geometry tree in Haskell. Something about having my operation types separate from the tree structure is bothering me. I'm thinking of making the Tree type ...
3
votes
1answer
233 views

Zipping zippers in Anti-XML

In this question, the asker wants to transform documents like this: <text> The capitals of Bolivia are <blank/> and <blank/>. </text> Into this: <text> The ...
2
votes
0answers
74 views

Densely packed tree of signals

I collect realtime signals, compute derived signals and store both raw and derived data in a circular buffer, so I hold only last million of samples. Sometimes I need to serialize current values for ...
1
vote
2answers
156 views

Multiple mutations to an XML document in Clojure

I'm trying clojure (for the first time) for a simple project. I need to update an xml tree given a csv file. I'm reading the csv file line by line, extract some values, loop up a node given some ...
3
votes
2answers
114 views

Serialize a Zipper?

repl> (-> root zip/down zip/right) [{:answer-keys [5 6], :id 3} {:l [{:id 2, :answer-keys []}], :pnodes [{:answer-keys [2 3 4], :id 1}], :ppath nil, :r ({:answer-keys [7], :id 4})}] I see this ...
4
votes
0answers
109 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 ...
11
votes
2answers
596 views

Two-dimensional zipper

Inspired by the recent question about 2d grids in Haskell, I'm wondering if it would be possible to create a two-dimensional zipper to keep track of a position in a list of lists. A one-dimensional ...
2
votes
1answer
324 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 ...
7
votes
1answer
203 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 ...
2
votes
1answer
149 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 ...
3
votes
2answers
259 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 ...
59
votes
3answers
7k 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
2answers
999 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 ...
3
votes
1answer
841 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 ...
3
votes
1answer
343 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 ...
13
votes
1answer
635 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
891 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> ...
4
votes
2answers
900 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 ...
18
votes
3answers
2k 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 ...