1

我很难理解如何为二叉树的单子正确实现 (>>=)。我有以下二叉树:

data BinTree a = Leaf a | Node a (BinTree a) (BinTree a) 
    deriving (Eq, Ord, Show, Read) 

这是我的 monad 的 (>>=) 运算符:

Node x l r >>= f = Node (f x) (l >>= f) (r >>= f)
                 __________^

我不断收到此错误:

Couldn't match type `b' with `BinTree b'
`b' is a rigid type variable bound by
  the type signature for
    >>= :: BinTree a -> (a -> BinTree b) -> BinTree b
  at test.hs:153:5
 In the return type of a call of `f'
 In the first argument of `Node', namely `(f x)'
 In the expression: Node (f x) (l >>= f) (r >>= f)

所以我不明白如何获得正确类型的正确叶子?

任何帮助表示赞赏

谢谢

4

1 回答 1

2

您的定义Node说构造函数中的第一个值具有 type a,但您正试图将 aBinTree a插入节点值。您需要做的是绑定结果f x并将其用作新节点的值。

(Node x l r) >>= f = f x >>= \y -> Node y (l >>= f) (r >>= f)
于 2013-07-05T17:41:59.977 回答