私は人々が OCaml でトライを書く方法を理解しようとしています。私がオンラインで見つけた例があります:
マップを定義します。
module CharMap = Map.Make(Char)
次に、トライのタイプを定義します。
(* count of members of the set that end at this node * mapping from
next char => children *)
type trie = Node of int * trie CharMap.t
ここに私の問題があります: とは何trie CharMap.t
ですか? ある種の地図だと思いますが、それが何であるかわかりません。
ありがとう