1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
|
(*
Copyright (c) 2000
Cambridge University Technical Services Limited
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*)
structure Misc :
(*****************************************************************************)
(* Misc exports signature *)
(*****************************************************************************)
sig
(* standard exceptions used by the compiler *)
exception Interrupt;
(* These are handled in the compiler *)
exception Conversion of string; (* string to int conversion failure *)
(* This isn't handled at all (except generically) *)
exception InternalError of string; (* compiler error *)
val quickSort : ('a -> 'a -> bool) -> 'a list -> 'a list
val unescapeString : string -> string
val lookupDefault : ('a -> 'b option) -> ('a -> 'b option) -> 'a -> 'b option
end =
(*****************************************************************************)
(* Misc structure body *)
(*****************************************************************************)
struct
exception Interrupt = SML90.Interrupt;
(* These are handled in the compiler *)
(* Conversion may be also raised by run-time Conversion routines *)
exception Conversion = RunCall.Conversion
(* This isn't handled at all (except generically) *)
exception InternalError of string; (* compiler error *)
(* Simple definition of quicksort. This is fairly efficient on time but is very
bad for memory allocation and is only suitable for small cases.
The call to List.partition builds O(N.log N) cells, if the list is random or
O(N.N) if it is already sorted. It has been improved from the original
which used append (@) to build the sorted list which added a second O(N.N)
phase. *)
fun quickSort (leq: 'a -> 'a -> bool) (l: 'a list) =
let
fun qs ([], tail) = tail
| qs ([h], tail) = h :: tail
| qs (h::t, tail) =
let
val (after, befor) = List.partition (leq h) t
in
qs(befor, h :: qs(after, tail))
end
in
qs(l, [])
end
(* Convert a string, recognising and converting escape codes. This is
installed as the initial string conversion function and replaced
when the String structure is compiled.
We can't use fromString because it stops on invalid input and
returns as much as it can rather than raising an exception. *)
fun unescapeString(s: string) : string =
let
val len = size s
fun rdr i =
if i = len then NONE
else SOME(String.sub(s, i), i+1)
(* Repeatedly convert escape sequences and accumulate the
results in a list. *)
fun convChars i =
if i = len then [] (* Finished *)
else case Char.scan rdr i of
NONE => (* Bad conversion *)
raise Conversion "Invalid string constant"
| SOME(res, j) => res :: convChars j
in
String.implode(convChars 0)
end
fun lookupDefault first second = (fn key => case first key of NONE => second key | v => v);
end (* Misc *);
|