From: Diego Olivier Fernandez Pons <Diego.FERNANDEZ_PONS@etu.upmc.fr>
To: Jon Harrop <jon@jdh30.plus.com>
Cc: caml-list@inria.fr
Subject: Re: [Caml-list] Functional arrays
Date: Mon, 2 Aug 2004 09:45:54 +0200 (DST) [thread overview]
Message-ID: <Pine.A41.4.44.0408020917560.336086-100000@ibm1> (raw)
In-Reply-To: <200407311823.40820.jon@jdh30.plus.com>
Bonjour,
> > > Incidentally, does anyone have a functional array implementation
As far as I know there are 3 main techniques to implement functional
arrays :
- version arrays
- maps with indexed access
- random acces lists
A version array is a classical array (O(1) acces) where persistance is
handled by 'indirection' and 'cache' : a pointer based mechanism
allows you to restore the complete history of the array by writing
back when needed this information in the main array.
classical examples :
- an array of stamped lists (confer to the ML version of Martin
Erwing's functional graph library)
- an array of trees (confer to the work of Melissa O'Neill where the
underlying trees are splay trees - she has written a Master Thesis, a
JFP paper and part of her doctoral dissetation on the subject)
The other two techniques handle persistency by copying and sharing (as
usual in functional programming).
- The map family is just a classical tree-like data structure
optimized for fast index location (the n-th element). Usually, the
balanced scheme used is Stephen Adam's weight-balanced trees because
memoizing in every node the size of the subtree allows a fast index
computation (see Baire, /set folder)
- The random acces list family is based on the isomorphism of binary
numbers and a list of increasing 2^k sized trees. There are many well
known data structures that can be seen as a particular case of this
scheme including binomial heaps (Vuillemin) and their amortized
variants (Okasaki-Brodal), and functional arrays (Okasaki)
You will find functional arrays code in
- Edison (Okasaki's Haskell data structure library)
- Markus Mottl port of Okasaki's book
- Baire
> Well, by "array" I mean a container with O(1) random access where
> "n" is the number of elements already in the container.
- version array O(1) access to the current array / up to O(n) for
previous versions
- maps O(log n) access to all arrays
- ral O(log n) access to all arrays
Diego Olivier
-------------------
To unsubscribe, mail caml-list-request@inria.fr Archives: http://caml.inria.fr
Bug reports: http://caml.inria.fr/bin/caml-bugs FAQ: http://caml.inria.fr/FAQ/
Beginner's list: http://groups.yahoo.com/group/ocaml_beginners
next prev parent reply other threads:[~2004-08-02 11:18 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
2004-07-31 8:56 [Caml-list] const equivalent for mutable types? Christopher A. Gorski
2004-07-31 9:24 ` Jean-Marie Gaillourdert
2004-07-31 10:24 ` Jean-Marie Gaillourdert
2004-07-31 10:50 ` Markus Mottl
2004-07-31 14:31 ` Brian Hurt
2004-07-31 15:51 ` Markus Mottl
2004-07-31 17:05 ` skaller
2004-07-31 10:34 ` Markus Mottl
2004-07-31 13:44 ` Jon Harrop
2004-07-31 16:31 ` [Caml-list] Phantom types Markus Mottl
2004-08-23 9:49 ` Jon Harrop
2004-08-23 12:25 ` [Caml-list] Why does ocaml use custom buffering? Daan Leijen
2004-08-23 15:16 ` [Caml-list] Phantom types Jon Harrop
2004-08-27 9:03 ` Jacques GARRIGUE
2004-08-25 21:03 ` brogoff
2004-07-31 16:35 ` [Caml-list] const equivalent for mutable types? skaller
2004-07-31 17:23 ` [Caml-list] Functional arrays Jon Harrop
2004-07-31 18:45 ` skaller
2004-08-02 5:07 ` brogoff
2004-08-02 7:45 ` Diego Olivier Fernandez Pons [this message]
2004-08-05 16:42 ` Daniel Ortmann
2004-08-05 17:02 ` Diego Olivier Fernandez Pons
2004-08-05 17:16 ` Diego Olivier Fernandez Pons
2004-07-31 17:45 ` [Caml-list] const equivalent for mutable types? Chris Gorski
2004-07-31 14:11 ` Brian Hurt
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=Pine.A41.4.44.0408020917560.336086-100000@ibm1 \
--to=diego.fernandez_pons@etu.upmc.fr \
--cc=caml-list@inria.fr \
--cc=jon@jdh30.plus.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox