-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsorting.ch
77 lines (52 loc) · 2.26 KB
/
sorting.ch
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
rf "colist.ch".
rf "cobTree.ch".
(***** MERGE SORT *****)
def split: list(A) -> list(A) * list(A)
= l => {| nil : () => ([], [])
| cons: (a, (l1, l2)) => (l2, cons (a, l1))
|}
l.
def build_m_tree: list(A) -> cobTree(list(A), 1)
= l => (| [] => debTree: b0 []
| [a] => debTree: b0 [a]
| l => debTree: b1 ((), split l)
|)
l.
def merge_sort{lt_A: A * A -> bool}: list(A) -> list(A)
= l => { len => colist_2_list ( fold_cobTree{ x => x
, (_, p) => merge{lt_A} p
}
( cobTree{ list_2_colist
, () => ()
}
build_m_tree l
, ( len
, (delist: ff)
)
)
,
len
)
}
length l.
(***** QUICK SORT *****)
def pivot{lt_A: A * A -> bool}: A * list(A) -> list(A) * list(A)
= (a, l) => {| nil : () => ([], [])
| cons: (a', (less, rest)) =>
{ true => (cons (a', less), rest)
| false => (less, cons (a', rest))
}
lt_A (a', a)
|}
l.
def build_q_tree{lt_A: A * A -> bool}: list(A) -> cobTree (list(A), A)
= l => (| [] => debTree: b0 []
| [a] => debTree: b0 [a]
| cons (a, l) => debTree: b1 (a, pivot{lt_A} (a, l))
|)
l.
def quick_sort{lt_A: A * A -> bool}: list(A) -> list(A)
= l => fold_cobTree{ x => x
, (a, (l1, l2)) => append (l1, cons (a, l2))
}
(build_q_tree{lt_A} l, (length l, [])).