vote up 3 vote down star
1

Say we are traversing a graph and want to quickly determine if a node has been seen before or not. We have a few set preconditions.

  1. Nodes have been marked with integers values 1..N
  2. Graph is implemented with nodes having an adjacency list
  3. Every integer value from 1..N occurs in the graph, which is of size N

Any ideas for doing this in a purely functional way?(No Hash tables or arrays allowed).

I want a data structure with two functions working on it; add(adds an encountered integer) and lookup(checks if integer has been added). Both should preferably take O(n) time amortized for N repetitions.

Is this possible?

flag

3 Answers

vote up 0 vote down

Efficient element lookup in functional languages is quite hard. Data.Set (as shown above) is implemented using a binary tree which can be built up in a purely functional way providing lookup operations in O(log n). HashTables (which aren't purely functional) would have O(1).

link|flag
vote up -2 vote down

Assuming this is a practical question and not homework, you really want to use arrays if at all possible because they will be a lot faster in practice. For a significant range of N, you can even use the arrays purely functionally (i.e. copying all elements on update) and it will still be faster than any purely functional solution. Beyond that, use a very wide tree with arrays of children at nodes.

link|flag
vote up 5 vote down

You can use a Data.Set. You add an element by creating a new set from the old one with insert and pass the new set around. You look up whether an element is a member of the set with member. Both operations are O(log n).

Perhaps, you could consider using a state monad to thread the passing of the set.

link|flag
I assume Data.Set will give logarithmic- or quasi-constant-time performance on addToSet and member, as opposed to expected constant-time performance with hash tables? – Chris Conway Nov 13 '08 at 22:51
Chris, you're right. Data.Set insert and lookup operations are O(log n). – namin Nov 13 '08 at 23:20
If your integers are small enough for the Int type, you can use Data.IntSet, which is optimized version of Set. – mattiast Nov 16 '08 at 9:03

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.