マルチウェイ ツリーに適用するために、Brian's Fold をバイナリ ツリー ( http://lorgonblog.wordpress.com/2008/04/06/catamorphisms-part-two/ ) に適用しようとしています。
Brian のブログからの要約:
データ構造:
type Tree<'a> =
| Node of (*data*)'a * (*left*)Tree<'a> * (*right*)Tree<'a>
| Leaf
let tree7 = Node(4, Node(2, Node(1, Leaf, Leaf), Node(3, Leaf, Leaf)),
Node(6, Node(5, Leaf, Leaf), Node(7, Leaf, Leaf)))
二分木折り関数
let FoldTree nodeF leafV tree =
let rec Loop t cont =
match t with
| Node(x,left,right) -> Loop left (fun lacc ->
Loop right (fun racc ->
cont (nodeF x lacc racc)))
| Leaf -> cont leafV
Loop tree (fun x -> x)
例
let SumNodes = FoldTree (fun x l r -> x + l + r) 0 tree7
let Tree6to0 = FoldTree (fun x l r -> Node((if x=6 then 0 else x), l, r)) Leaf tree7
マルチウェイ ツリー バージョン [(完全に) 動作していません] :
データ構造
type MultiTree = | MNode of int * list<MultiTree>
let Mtree7 = MNode(4, [MNode(2, [MNode(1,[]); MNode(3, [])]);
MNode(6, [MNode(5, []); MNode(7, [])])])
折り機能
let MFoldTree nodeF leafV tree =
let rec Loop tree cont =
match tree with
| MNode(x,sub)::tail -> Loop (sub@tail) (fun acc -> cont(nodeF x acc))
| [] -> cont leafV
Loop [tree] (fun x -> x)
例 1 28 を返します - 動作しているようです
let MSumNodes = MFoldTree (fun x acc -> x + acc) 0 Mtree7
例 2
実行されません
let MTree6to0 = MFoldTree (fun x acc -> MNode((if x=6 then 0 else x), [acc])) Mtree7
最初はどこかにMFoldTree
必要だと思っていましたが、代わりにオペレーターと連携するようになりました。map.something
@
2 番目の例に関するヘルプや、MFoldTree
関数で行ったことの修正は素晴らしいことです。
乾杯
デュシオド