正如我previous question所解释的那样,如果您的节点上没有某种独特的标签,则无法区分使用绑定策略制作的两个图表。使用双刃图作为示例:
data Node = Node Int Node Node
square = a where
a = Node 0 b c
b = Node 1 a d
c = Node 2 a d
d = Node 3 b c
由于需要手动编写标签,以这种方式编写square
有点不方便且容易出错。这种模式通常需要monad:
square = do
a <- Node b c
b <- Node a d
c <- Node a d
d <- Node b c
return a
但由于monad是顺序的,所以也无法做到这一点。有没有方便的方法来编写结结图?
答案 0 :(得分:10)
{-# LANGUAGE RecursiveDo #-}
import Control.Monad.State
type Intividual a = State Int a
data Node = Node Int Node Node
newNode :: Node -> Node -> Intividual Node
newNode a b = state $ \i -> (Node i a b, succ i)
square :: Node
square = (`evalState`0) $ mdo
a <- newNode b c
b <- newNode a d
c <- newNode a d
d <- newNode b c
return a