caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
From: Tomasz Zielonka <zielony@cs.net.pl>
To: Jacek Chrzaszcz <chrzaszcz@mimuw.edu.pl>
Cc: caml-list@inria.fr
Subject: Re: [Caml-list] How to read three integers from a text-file... ?
Date: Wed, 24 Apr 2002 23:23:16 +0200	[thread overview]
Message-ID: <20020424212316.GA26318@cs.net.pl> (raw)
In-Reply-To: <15557.14957.358556.545541@absurd.mimuw.edu.pl>

On Tue, Apr 23, 2002 at 12:41:49PM +0200, Jacek Chrzaszcz wrote:
> Hello list,

[Hello]    ;)

> Is there a clean way (a one-liner) to read a constant number of
> integers separated by whitespace from a text-file (or stdin) ?

For 'constant numbers' greater than 1 there are at least five
solutions:

1) Write function which will read 'n' ints from input and return a list
   of them. But that would be unsafe, inefficient and would cause 'this
   pattern-matching is not exhaustive' warnings in destructuring 'let'
   bindings.

2) Write several functions: read_1_int, read_2_ints, ..., read_5_ints,
   which will return tuples with appropriate number of ints. Safer but
   still inefficient (tuple allocation, copying) and a bit clumsy.

3) Create CamlP4 macro/(syntax extension) which will expand to
   'let's binding subsequent ints to given names. Something like:

   READINTS(a, b, c, d)

   (sorry, I know it looks like a CPP macro)

   expanded to:

   let a = get_int () in
   let b = get_int () in
   let c = get_int () in
   let d = get_int () in

4) Create mechanism dual to printf, but as far as I understand
   OCaml's printf, this would require extending typechecker.

5) Just 'n' times use a function which reads 1 integer from input.

Personally I prefer option 5.

I write

  let read_int = ()

at top of my program, to avoid using this standard OCaml function.
Then I define get_int function, which just reads characters one by one.

  get_int: unit -> int

When using such imperative function, one should be careful. OCaml's
evaluation order is not left to right, so following constructs may have
effects other than desired:

  let pair = (get_int (), get_int ())

  f (get_int ()) (get_int ())

> I know I can use String.index, Str.split or read char by char (this
> sucks), but you have to admit the Pascal or even C versions are more
> appealing.

Reading char by char sucks? Why? 

Scanf probably does it, and it isn't exactly _reading_ char by char
when you have buffered I/O.

I participated in online contest recently and I made some "research" in
integer reading :) 

I've even made benchmarks - the task was to read first integer from input
as 'n', sum following 'n' unsigned integers and print the result.  Here
are the times for n=200000 on PIII 850 (gcc ocamlopt 3.04).

program         time    description
-----------------------------------------------------------------------
c_scanf        0.201s - C scanf ("%d", ...
c_scanf4       0.173s - C scanf ("%d%d%d%d", ...
c_macro        0.095s - my C macro (using getchar())
c_macro2       0.037s - my C macro with input pre-loaded into array

ml_genlex      5.032s - Genlex, Genlex.npeek, List.map & List.fold_left
ml_genlex2     3.583s - Genlex with other sum function
ml_ocamllex    0.517s - ocamllex + int_of_string
ml_simple      0.100s - char by char tail-recursive reading function
ml_string2     0.061s - similar function, but with input pre-loading

Note that C programs were compiled without optimisation. With -O3
c_macro2 peforms even faster - 0m0.028s.

I think that ml_simple solution is satisfactory for such contests. It's
fast, simple and quite safe to use. I can send the source if someone's
interested.

> I am asking this question, because our students want to use Ocaml for
> competing in various programming contests, where the comfort and speed
> (of programming) are essential.

My simple solution is comfortable enough for me. 

Speed of execution is also important in contests - you rather don't
want to spend 5 seconds to just read the data.

> Jacek Chrzaszcz

tomek

-- 
Tomek Zielonka <t.zielonka@students.mimuw.edu.pl>
-------------------
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


  parent reply	other threads:[~2002-04-24 21:23 UTC|newest]

Thread overview: 41+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2002-04-23 10:41 Jacek Chrzaszcz
2002-04-24 10:44 ` Stefano Lanzavecchia
2002-04-24 18:46   ` Tomasz Zielonka
2002-04-24 11:16 ` Jacques Garrigue
2002-04-24 13:40   ` Tomasz Zielonka
2002-04-25  5:30   ` pervasives (was: Re: [Caml-list] How to read three integers from a text-file... ?) Chris Hecker
2002-04-25  6:33     ` Tomasz Zielonka
2002-04-25 17:54       ` Chris Hecker
2002-04-27  4:43         ` John Max Skaller
2002-04-27 16:02           ` [Caml-list] input_line (Re: pervasives) Lauri Alanko
2002-04-30 12:07             ` [Caml-list] input_line Xavier Leroy
2002-05-03  0:13               ` Lauri Alanko
2002-05-03 11:27                 ` Florian Hars
2002-04-24 21:23 ` Tomasz Zielonka [this message]
2002-04-25  1:51   ` [Caml-list] How to read three integers from a text-file... ? John Max Skaller
2002-04-25  8:55   ` Daniel de Rauglaudre
2002-04-25 11:19     ` Markus Mottl
2002-04-25 11:33       ` Jérôme Marant
2002-04-25 11:43         ` Markus Mottl
2002-04-25 17:56         ` Chris Hecker
2002-04-25 20:52           ` John Prevost
2002-04-25 23:32           ` Jacques Garrigue
2002-04-26  7:25             ` Jérôme Marant
2002-04-26 12:16           ` Jacques Garrigue
2002-05-02  8:48             ` Jacques Garrigue
2002-04-26  1:39         ` Daniel de Rauglaudre
2002-04-29  6:44   ` Francois Pottier
2002-04-30 11:07     ` Dave Berry
2002-04-30 12:20       ` Francois Pottier
2002-04-30 13:54         ` T. Kurt Bond
2002-05-03 22:12         ` Dave Berry
2002-04-30 14:42       ` Jocelyn Sérot
2002-05-02  7:34         ` [Caml-list] Extensible tuple types Francois Pottier
2002-05-02  9:42           ` Alain Frisch
2002-05-02 11:03             ` Francois Pottier
     [not found]       ` <6ECF4649-5C48-11D6-AC27-0003934491C2@lasmea.univ-bpclermon t.fr>
2002-05-03 21:58         ` [Caml-list] How to read three integers from a text-file... ? Dave Berry
2002-05-06  0:53           ` Eray Ozkural
2002-05-06  6:40           ` Florian Hars
2002-04-30 23:30     ` [Caml-list] Danvy "Functional Unparsing" style output in OCaml [was: How to read three integers from a text-file... ?] T. Kurt Bond
2002-05-13 14:11       ` [Caml-list] RE: Danvy "Functional Unparsing" style output in OCaml T. Kurt Bond
2002-05-13 19:59         ` [Caml-list] "Functional Unparsing" benchmark results links fixed [Was: Danvy "Functional Unparsing" style output in OCaml] T. Kurt Bond

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=20020424212316.GA26318@cs.net.pl \
    --to=zielony@cs.net.pl \
    --cc=caml-list@inria.fr \
    --cc=chrzaszcz@mimuw.edu.pl \
    /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;
as well as URLs for NNTP newsgroup(s).