输入:未排序列表/输出:排序列表
我的基本想法是在排序列表中插入一个整数。
(如果我可以将第一个元素插入排序的尾部,我可以对列表进行排序。)
我使用了“插入”,它是辅助函数。
但是,它会溢出。谁能告诉我问题是什么?
let rec sort (l: int list) : int list =
match l with
[]->[]
| x::[]->[x]
| x1::x2::xs->let rec insert (n,dest) =
match dest with
[]->[n]
| y::[]-> if n<y then [n;y] else [y;n]
| y1::y2::ys-> if y1<y2 then n::dest else y2::insert(y1,xs)
in insert(x1,sort(x2::xs)) ;;