1995-08-09 08:06:35 -07:00
|
|
|
(***********************************************************************)
|
|
|
|
(* *)
|
2011-07-27 07:17:02 -07:00
|
|
|
(* OCaml *)
|
1995-08-09 08:06:35 -07:00
|
|
|
(* *)
|
|
|
|
(* Xavier Leroy, projet Cristal, INRIA Rocquencourt *)
|
|
|
|
(* *)
|
1996-04-30 07:53:58 -07:00
|
|
|
(* Copyright 1996 Institut National de Recherche en Informatique et *)
|
1999-11-17 10:59:06 -08:00
|
|
|
(* en Automatique. All rights reserved. This file is distributed *)
|
2001-12-07 05:41:02 -08:00
|
|
|
(* under the terms of the GNU Library General Public License, with *)
|
|
|
|
(* the special exception on linking described in file ../LICENSE. *)
|
1995-08-09 08:06:35 -07:00
|
|
|
(* *)
|
|
|
|
(***********************************************************************)
|
|
|
|
|
2015-11-22 12:15:03 -08:00
|
|
|
type 'a t = { mutable c : 'a list; mutable len : int; }
|
1995-05-04 03:15:53 -07:00
|
|
|
|
|
|
|
exception Empty
|
|
|
|
|
2015-11-22 12:15:03 -08:00
|
|
|
let create () = { c = []; len = 0; }
|
1995-05-04 03:15:53 -07:00
|
|
|
|
2015-11-22 12:15:03 -08:00
|
|
|
let clear s = s.c <- []; s.len <- 0
|
1995-05-04 03:15:53 -07:00
|
|
|
|
2015-11-22 12:15:03 -08:00
|
|
|
let copy s = { c = s.c; len = s.len; }
|
2001-10-25 04:32:25 -07:00
|
|
|
|
2015-11-22 12:15:03 -08:00
|
|
|
let push x s = s.c <- x :: s.c; s.len <- s.len + 1
|
1995-05-04 03:15:53 -07:00
|
|
|
|
|
|
|
let pop s =
|
|
|
|
match s.c with
|
2015-11-22 12:15:03 -08:00
|
|
|
| hd::tl -> s.c <- tl; s.len <- s.len - 1; hd
|
1995-05-04 03:15:53 -07:00
|
|
|
| [] -> raise Empty
|
|
|
|
|
2000-04-13 05:16:02 -07:00
|
|
|
let top s =
|
|
|
|
match s.c with
|
2015-11-22 12:15:03 -08:00
|
|
|
| hd::_ -> hd
|
2000-04-13 05:16:02 -07:00
|
|
|
| [] -> raise Empty
|
|
|
|
|
2002-06-27 01:48:26 -07:00
|
|
|
let is_empty s = (s.c = [])
|
|
|
|
|
2015-11-22 12:15:03 -08:00
|
|
|
let length s = s.len
|
1995-05-04 03:15:53 -07:00
|
|
|
|
|
|
|
let iter f s = List.iter f s.c
|
2015-06-09 05:52:40 -07:00
|
|
|
|
|
|
|
let fold f acc s = List.fold_left f acc s.c
|