From: David Allsopp <dra-news@metastack.com>
To: "OCaml List (caml-list@inria.fr)" <caml-list@inria.fr>
Subject: RE: [Caml-list] still puzzled on generic types
Date: Thu, 29 Sep 2011 15:16:19 +0000 [thread overview]
Message-ID: <E51C5B015DBD1348A1D85763337FB6D9C248DABE@Remus.metastack.local> (raw)
In-Reply-To: <alpine.LFD.2.00.1109291700550.4431@surtur.dico.unimi.it>
Walter Cazzola wrote:
> Dear all,
> waiting for some hints on my other issue for functors and generic I was
> playing with an enumerate function (with tail recursion):
>
> let rec enumerate ?(l':((int * 'a) list)=[]) ?(n=0) l =
> match l with
> h::l1 -> enumerate (l'@[(n,h)]) (n+1) l1
> | [] -> l'
>
> this should just take a list and return a list of couple whose first entry
> is the position in the list of the element; to be clearer:
>
> enumerate ['a'; 'b'; 'c'] -> [(0,'a'); (1,'b'); (2,'c')];
>
> but this doesn't work as by type mismatch:
>
> Error: This expression has type (int * 'a) list
> but an expression was expected of type 'a list
I think it's probably something to do with optional arguments not behaving as you expect. But this is a bad use for optional arguments - you should instead use a nested function to pass the accumulator values. This works fine:
let enumerate l =
let rec enumerate acc n = function
h::ls -> enumerate ((n, h)::acc) (n + 1) ls
| [] -> List.rev acc
in
enumerate [] 0 l
Concatenating lists is also expensive in terms of the left list so your function is about as slow as possible! Much better when aiming for tail recursion, accumulate a reversed list and then reverse it in the basis case.
David
next prev parent reply other threads:[~2011-09-29 15:16 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-09-29 15:07 Walter Cazzola
2011-09-29 15:16 ` David Allsopp [this message]
2011-09-29 15:29 ` Walter Cazzola
2011-09-29 19:04 ` David Allsopp
2011-09-29 15:20 ` Pierre Chopin
2011-09-29 15:32 ` Walter Cazzola
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=E51C5B015DBD1348A1D85763337FB6D9C248DABE@Remus.metastack.local \
--to=dra-news@metastack.com \
--cc=caml-list@inria.fr \
/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