-
Notifications
You must be signed in to change notification settings - Fork 2
/
ListSort.sml
33 lines (31 loc) · 1.12 KB
/
ListSort.sml
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
structure Listsort : LIST_SORT =
struct
fun sort ordr xs =
let
fun merge [] ys = ys
| merge xs [] = xs
| merge (x::xs) (y::ys) =
if ordr(x, y) <> GREATER then x :: merge xs (y::ys)
else y :: merge (x::xs) ys
fun mergepairs l1 [] k = [l1]
| mergepairs l1 (ls as (l2::lr)) k =
if k mod 2 = 1 then l1::ls
else mergepairs (merge l1 l2) lr (k div 2)
fun nextrun run [] = (run, [])
| nextrun run (xs as (x::xr)) =
if ordr(x, List.hd run) = LESS then (run, xs)
else nextrun (x::run) xr
fun sorting [] ls r = List.hd(mergepairs [] ls 0)
| sorting (x::xs) ls r =
let val (revrun, tail) = nextrun [x] xs
in sorting tail (mergepairs (List.rev revrun) ls (r+1)) (r+1)
end
in sorting xs [] 0
end
fun sorted ordr [] = true
| sorted ordr (y1 :: yr) =
let fun h x0 [] = true
| h x0 (x1::xr) = ordr(x0, x1) <> GREATER andalso h x1 xr
in h y1 yr
end
end (* structure ListSort *)