入力: ソートされていないリスト / 出力: ソートされたリスト
私の基本的なアイデアは、ソートされたリストに整数を挿入することです。
(ソートされた末尾に最初の要素を挿入できれば、リストをソートできます。)
ヘルパー関数である「挿入」を使用しました。
ただし、オーバーフローします。誰が問題が何であるか教えてもらえますか?
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)) ;;