instance Monad ST where
--return :: a -> ST a
return x = S (\s -> (x,s))
--(>>=) :: ST a -> (a -> ST b) -> ST b
st >>= f = S (\s -> let (x, s') = app st s
in app (f x) s')
type State = Int
newtype ST a = S (State -> (a, State))
data Tree a = Leaf a | Node (Tree a) (Tree a) deriving (Show)
app :: ST a -> State -> (a, State)
app (S st) s = st s
mlabel :: Tree a -> ST (Tree Int)
mlabel (Leaf _) = fresh >>= (\n -> return (Leaf n))
mlabel (Node l r) = mlabel l >>= (\l ->
mlabel r >>= (\r ->
return (Node l r)))
fresh :: ST Int
fresh = S (\n -> (n , n +1))
嗨,这是我的代码,我想确保我对mlabel函数扩展的理解是正确的。我没有使用任何额外的导入。
So suppose mlabel gets a input of Leaf 'a'
fresh >>== (\n -> return (Leaf n))
S (\n -> (n, n+1) >>== (\n -> return (Leaf n))
= S (\s -> let (x, s') = app (S (\n -> (n, n+1)) s
(x, s') = (s, s+1)
in app ((\n -> return (Leaf n) x) s'
= app (S (\x -> (Leaf x, x+1)) s'
= (\x -> (Leaf x, x+1) s'
= (Leaf s+1, (s+1)+1)
型
1条答案
按热度按时间uttx8gqw1#
你还没有包含这个monad的
>>=
和return
操作的定义,但我假设你有这样的东西:字符串
如果是这样的话,你的扩展就有问题了:
型
你在第一行少了一个右括号,我想你跳过了太多的步骤,把自己弄糊涂了。
无论如何,这应该看起来更像这样:
型
let (x, s') = (s, s+1) in ...
代入x
和s'
的值时,我们得到:型
而不是
(Leaf s+1, (s+1)+1)
。重写整个
let xxx in yyy
语句而不是单独重写xxx
和yyy
部分可能更安全,所以:型