3
votes
2answers
87 views

What are the advantages of Cons?

Many functional programming languages support and recommend the data constructor Cons (for lists like (1, (2, (3))), such as Haskell and Scala. But what are its advantages? Such lists can neither be ...
-2
votes
1answer
54 views

Persistent data structures: a persistent index? [closed]

Functional programming utilizes immutable data. When you modify something you reinstantiate "the world" reusing the previous incarnation in as much as possible for your augmented world. I am ...
7
votes
0answers
157 views

Statistical performance of purely functional maps and sets

Given a data structure specification such as a purely functional map with known complexity bounds, one has to pick between several implementations. There is some folklore on how to pick the right one, ...
7
votes
1answer
117 views

Equivalence classes and union/find in a functional language

For an automata algorithm, I require a fast Union-Find data structure in a functional language. Since I need to formally prove the correctness of the data structure, I would prefer a simple structure. ...
6
votes
1answer
163 views

Can we think of immutable lists as a dual to trees?

I might draw a list of words like: this -> is -> a -> test and then through sharing, I might draw two lists as: this -> is -> a -> test ^ ...
7
votes
3answers
253 views

What is the most efficient implementation of arrays with functional updates?

I need an array-like data structure with the fastest possible functional update. I've seen a few different implementation of flexible arrays that provide me with this property (Braun, Random Access ...
7
votes
0answers
188 views

What's the difference between content in book (1999) and thesis (1996) for Chris Okasaki — Purely Functional Data Structures [closed]

I want to read Purely Functional Data Structure work. I've easily found thesis (which is freely available, 1996), but see that there's a book available also (1999). So I'd like to know how big is the ...
1
vote
1answer
147 views

The right way to use a data structure in OCaml

Ok, I have written a binary search tree in OCaml. type 'a bstree = |Node of 'a * 'a bstree * 'a bstree |Leaf let rec insert x = function |Leaf -> Node (x, Leaf, Leaf) |Node (y, ...
1
vote
0answers
139 views

Check if balanced binary tree (standard ml)

The tree datatype is : datatype mobile = Object of int | Wire of mobile * mobile To check if it's balanced I figured out I have to first make a weight function to calculate the weight of the values ...
0
votes
2answers
72 views

How to understand contains? applied to a list in clojure [closed]

I am a newbie for clojure and a little bit confused with the use of contains? form to different data structures. The result of applying contains to a vector, set or a map is just what I expect, it ...
2
votes
1answer
195 views

Cannot instantiate a binary_function for std::less / std::greater

I'm trying to write a function that will print the contents of both minheap and maxheap but I'm having trouble with the comparators. I tried using a ternary operator, but it doesn't work since ...
4
votes
4answers
295 views

Implementing Immutable, Growable Vectors

I'm interested in implementing persistent (e.g. purely functional, immutable, etc), growable vectors in F#, so that they might be used in the .NET framework. My current implementation is a variant on ...
34
votes
8answers
3k views

Purely functional data structures for text editors

What would be good purely functional data structures for text editors? I want to be able to insert single characters into the text and delete single characters from the text with acceptable ...
11
votes
5answers
233 views

When to expose constructors of a data type when designing data structures?

When designing data structures in functional languages there are 2 options: Expose their constructors and pattern match on them. Hide their constructors and use higher-level functions to examine the ...
1
vote
4answers
86 views

Given an object A and a list of objects L, how to find which objects on L are clones of A without testing all cases?

Using JavaScript notation: A = {color:'red',size:8,type:'circle'}; L = [{color:'gray',size:15,type:'square'}, {color:'pink',size:4,type:'triangle'}, {color:'red',size:8,type:'circle'}, ...
4
votes
0answers
174 views

Should melding/merging of binomial heaps be done in one pass or two?

Okasaki's implementation in Purely Functional Data Structures (page 22) does it in two: one to merge the forest, and one to propagate the carries. This strikes me as harder to analyze, and also ...
2
votes
4answers
257 views

how to access complex data structures in Scala while preserving immutability?

Calling expert Scala developers! Let's say you have a large object representing a writable data store. Are you comfortable with this common Java-like approach: val complexModel = new ComplexModel() ...
3
votes
1answer
173 views

Why use tuples in Finger Trees vs Linked Lists etc

Regarding finger trees, as seen in this paper and mentioned in this post by Eric Lippert. I do not understand why an explicit tuple arrangement is used, as opposed to some sort of linked list ...
8
votes
2answers
455 views

efficient functional data structure for finite bijections

I'm looking for a functional data structure that represents finite bijections between two types, that is space-efficient and time-efficient. For instance, I'd be happy if, considering a bijection f ...
2
votes
5answers
640 views

Purely functional set

Is there an algorithm that implements a purely functional set? Expected operations would be union, intersection, difference, element?, empty? and adjoin. Those are not hard requirements though and I ...
7
votes
1answer
486 views

Javascript functional library with persistent data structures

I'm looking for a functional library with persistent data structures. I only need nested arrays and dictionaries. There are some functional javascript libraries, but they are not geared towards ...
4
votes
1answer
456 views

Implementing a functional/persistent dictionary data structure

I'm trying to implement a functional dictionary in C. It is fairly easy to implement functional lists or b-trees but I can hardly find any references on dictionaries/associative arrays. I had a look ...
7
votes
2answers
561 views

implementing a basic search engine with prefix tree

The problem is the implementing a prefix tree (Trie) in functional language without using any storage and iterative method. I am trying to solve this problem. How should I approach this problem ? Can ...
11
votes
2answers
611 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 ...
4
votes
5answers
529 views

How is a bitmapped vector trie faster than a plain vector?

It's supposedly faster than a vector, but I don't really understand how locality of reference is supposed to help this (since a vector is by definition the most locally packed data possible -- every ...
7
votes
5answers
671 views

Fastest immutable list data structure for lots of concatenation and a single iteration

I'm working with Haskell. Standard list concatenation is naive and slow. My situation is I have an algorithm that builds up a single list concatenating (order doesn't matter, so it could be either ...
13
votes
3answers
784 views

A grasp of immutable datastructures

I am learning scala and as a good student I try to obey all rules I found. One rule is: IMMUTABILITY!!! So I have tried to code everything with immutable data structures and vals, and sometimes this ...
8
votes
1answer
727 views

How to understand segmented binomial heaps described in <Purely Functional Data Structures>

In chapter 6.3.1 of the thesis Purely Functional Data Structures, says: Then, whenever we create a new tree from a new element and a segment of trees of ranks 0... r-1, we simply compare the new ...
6
votes
5answers
461 views

What are the real advantages of immutable collections?

Scala provides immutable collections, such as Set, List, Map. I understand that the immutability has advantages in concurrent programs. However what are exactly the advantages of the immutability in ...
4
votes
1answer
293 views

Scala: what is the most appropriate data structure for sorted subsets?

Given a large collection (let's call it 'a') of elements of type T (say, a Vector or List) and an evaluation function 'f' (say, (T) => Double) I would like to derive from 'a' a result collection 'b' ...
1
vote
2answers
816 views

Data structure for trees

I noticed that Python has quite a lot specialities for working with data structures (various iterators, generators, list comprehensions etc.). Could you advise me some data structures that are useful ...
4
votes
1answer
217 views

Best data structure for an immutable persistent 3D grid

I'm experimenting with writing a game in a functional programming style, which implies representing the game state with a purely functional, immutable data structures. One of the most important data ...
7
votes
2answers
444 views

Can functional/immutable data structures still be useful for concurrency in a non-garbage collected context?

One of the selling points of immutable data structures is that they are automatically parallelizable. If no mutation is going on, then references to a functional data structure can be passed around ...
9
votes
4answers
345 views

data structure for spacial data

I am looking for a good functional data structure to store spacial (point) data. The data structure should allow simple epsilon queries for points already present. Also I need to modify the data quite ...
9
votes
2answers
411 views

F# PurelyFunctionalDataStructures WeightBiasedLeftistHeap ex 3.4

I'm working on Okasaki's Purely Functional Data Structures and trying to build F# implementations of things. I'm also going through the exercises listed in the book (some are pretty challenging). Well ...
5
votes
2answers
211 views

A question concerning list accesses from a noobie functional programmer

This might be a silly and obvious question, but why are list access algorithm examples implemented in linear time? I understand that most applications involve traversing lists rather than accessing ...
7
votes
2answers
620 views

Is there a bidirectional multimap persistent data structure?

In other words, can we model many to many relationships in a persistent data structure efficiently? A pair of unidirectional multimaps was suggested. However, I'm not sure how this would work well ...
3
votes
3answers
295 views

Functional map-like data structure with arbitrary length data as keys?

It could very well be that the answer to this question is an obvious and resounding "there's no such thing", but I'll give it a shot: Is there a functional map-like data structure that is more ...
11
votes
2answers
687 views

easy “undo” in functional data structures

I've heard that one of the benefits of purely functional data structures is that you get undo/redo operations for free. Can someone explain why? I don't see why adding undo/redo is easier in a ...
3
votes
2answers
140 views

Is there a generalized approach to handling notifications of changes from large persistent data structure?

First the motivation for this question: anyone who uses persistent data structures and a gui runs into this problem. So, my questions is kind of: do people just work it out on a case by case basis, or ...
8
votes
1answer
271 views

Data-structural bootstrapping examples?

I recently read Okasaki and Brodal's paper "Optimal Purely Functional Priority Queues," which describes a fast priority queue based on data-structural bootstrapping, in which a simple and inefficient ...
2
votes
5answers
428 views

Functional O(1) append and O(n) iteration from first element list data structure

I'm looking for a functional data structure that supports the following operations: Append, O(1) In order iteration, O(n) A normal functional linked list only supports O(n) append, while I could ...
12
votes
4answers
1k views

Mutability in functional programming

First I am a Haskell newbie. I've read this: Immutable functional objects in highly mutable domain And my question is nearly the same -- how to efficiently write algorithms where the state is supposed ...
28
votes
5answers
2k views

What is the benefit of purely functional data structure?

There are large number of texts on data structures, and libraries of data structures code. I understand that purely functional data structure is easier to reason about. However I have trouble to ...
6
votes
2answers
560 views

Program Structure — Simple Commandline To Do List App — What's the Haskell way?

Background: I am working on my first complete program in Haskell, a simple to do list application on the command line. My question is one of structure and has two levels: (1) What is the best way to ...
1
vote
2answers
135 views

What's a good way to manage a lot of loosely related components in F#?

I'm trying to translate an idea I had from OOP concepts to FP concepts, but I'm not quite sure how to best go about it. I want to have multiple collections of records, but have individual records ...
22
votes
1answer
1k views

What should I use Clojure's finger trees for?

Clojure's new contrib library group has a finger tree library. What are the use cases for finger trees in clojure? When should finger trees be used instead of one of clojure's other peristent data ...
11
votes
5answers
525 views

Functional/Immutable Data Structures for the JVM?

Does anyone know of a Java/JVM data structure library providing functional (a.k.a. immutable, or "persistent" in the functional sense) equivalents of the familiar Java data structures? By ...
5
votes
2answers
347 views

Weight-Biased Leftist Heaps: advantages of top-down version of merge?

I am self-studying Okasaki's Purely Functional Data Structures, now on exercise 3.4, which asks to reason about and implement a weight-biased leftist heap. This is my basic implementation: (* 3.4 (b) ...
17
votes
2answers
1k views

Zipper like data structure with more than 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 ...

1 2