From: "Laurent Chéno" <lcheno@cybercable.fr>
To: John BEPPU <beppu@lineo.com>, Caml list <caml-list@margaux.inria.fr>
Subject: Re: help an o'caml beginner
Date: Thu, 27 Jul 2000 23:31:12 +0200 [thread overview]
Message-ID: <200007272131.e6RLV7L25903@nez-perce.inria.fr> (raw)
In-Reply-To: <20000726115152.A6102@yukari.lineo.com>
Le 26/07/00 à 11:51, beppu@lineo.com (John BEPPU) écrivait :
> Hi.
--- Please excuse my poor english ---
>
> Next, I wrote an iterative C version.
>
> #include <stdio.h>
>
> int fib(int n)
> {
> int val = 2;
> int n1 = 2;
> int n2 = 1;
> int i;
> if (n < 2)
> return n;
>
> for (i = 2; i < n; i++) {
> val = n2 + n1;
> n2 = n1;
> n1 = val;
> }
> return val;
> }
>
> int main(char *argc, char **argv)
> {
> printf("%d\n", fib(atoi(argv[1])));
> return 0;
> }
>
> This was much faster than any of the recursive versions, because it
> doesn't have to recompute the same values over and over again.
>
the basic translation can be for example :
let fib n =
let val = ref 2
and n1 = ref 2
and n2 = ref 1
in
if n < 2 then n
else for i = 2 to n - 1 do
val := !n1 + !n2 ;
n2 := !n1 ;
n1 := !val
done ;
!val ;;
But I prefer a recursive and efficient version like this :
let fib n =
let rec fibaux n p q =
if n = 0 then p
else fibaux (n - 1) q (p + q)
in
fibaux n 0 1 ;;
this is a terminal recursion : try it !
--
Laurent Chéno Paris (France)
<http://pauillac.inria.fr/~cheno/>
--
next prev parent reply other threads:[~2000-07-28 13:19 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2000-07-26 17:51 John BEPPU
2000-07-27 18:47 ` Alain Frisch
2000-07-27 18:56 ` Markus Mottl
2000-07-29 17:03 ` John BEPPU
2000-07-29 17:23 ` Markus Mottl
2000-07-31 7:11 ` Vitaly Lugovsky
2000-07-31 8:43 ` Markus Mottl
2000-08-02 16:58 ` Printable Caml manual Walid Taha
2000-07-27 18:57 ` help an o'caml beginner Remi VANICAT
2000-07-27 19:08 ` Jean-Christophe Filliatre
2000-07-27 21:31 ` Laurent Chéno [this message]
2000-07-27 23:47 ` Michel Quercia
2000-07-27 18:24 Brent Fulgham
2000-07-27 18:43 Lenny Gray
2000-07-27 22:50 John R Harrison
2000-07-28 12:49 ` John BEPPU
2000-08-02 17:28 Brent Fulgham
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=200007272131.e6RLV7L25903@nez-perce.inria.fr \
--to=lcheno@cybercable.fr \
--cc=beppu@lineo.com \
--cc=caml-list@margaux.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