How does one go about doing doubly linked lists in a pure functional language? That is, something like Haskell where you're not in a Monad so you don't have mutation. Is it possible? (Singly linked list is obviously pretty easy).
|
|
In a pure functional language, a doubly-linked list is not that interesting. The idea of a doubly linked list is to be able to grab a node and go in either direction, or to be able to splice into the middle of a list. In a pure functionaly language you probably are better off with one of these two data structures:
I'm a big fan of the zipper; it's useful in a lot of situations. |
|||||||||||
|
|
There are a number of approaches. If you don't want to mutate the doubly-linked list once you have constructed it you can just 'tie the knot' by relying on laziness. http://www.haskell.org/haskellwiki/Tying_the_Knot If you want a mutable doubly-linked list you need to fake references somehow -- or use real ones -- a la the trick proposed by Oleg Kiseylov and implemented here: http://hackage.haskell.org/packages/archive/liboleg/2009.9.1/doc/html/Data-FDList.html Interestingly, note that the former relies fundamentally upon laziness to succeed. You ultimately need mutation or laziness to tie the knot. |
||||
|
|
|
I would reiterate musicfan's question: "what exactly do you need this for?" As Norman Ramsey notes: if you need multi-directional traversal, then zippers are easier; if you need fast splicing, finger trees work well. But, just to see how it looks...
|
|||
|
|
|
Just an addendum to Edward Kmett's answer: the problem of "backing up" in a recursive data structure (be it a list, tree, etc.) is often solved using a helper data structure that functional folks call a Zipper. |
|||
|
|
|
In OCaml, for circular simply linked list you can always do something like that:
For doubly linked lists, I imagine it's possible to do something similar. But you have to rely on laziness and on records being friendly structures when it comes to typing. Quick and dirty cyclic doubly linked list:
|
||||
|
|