Home > OCaml


OCamlでの木の折り畳み方法

木の型定義: まず、折り畳みを行うために、木の型を定義します。以下は単純な二分木の例です。type 'a tree = | Leaf | Node of 'a * 'a tree * 'a tree>>More