【发布时间】:2020-01-30 04:57:33
【问题描述】:
考虑这段代码:
import Data.Maybe (fromMaybe)
data MyStructure = Foo Int | Bar String MyStructure | Baz MyStructure MyStructure | Qux Bool Bool MyStructure MyStructure deriving(Eq,Show)
makeReplacements :: [(MyStructure, MyStructure)] -> MyStructure -> MyStructure
makeReplacements replacements structure = fromMaybe (descend structure) (lookup structure replacements)
where
descend :: MyStructure -> MyStructure
descend (Foo x) = Foo x
descend (Bar x y) = Bar x (makeReplacements replacements y)
descend (Baz x y) = Baz (makeReplacements replacements x) (makeReplacements replacements y)
descend (Qux x y z w) = Qux x y (makeReplacements replacements z) (makeReplacements replacements w)
它定义了一个递归数据类型,以及一个通过遍历它来执行搜索和替换的函数。但是,我正在使用显式递归,并希望使用递归方案。
首先,我输入了makeBaseFunctor ''MyStructure。为了清楚起见,我在下面扩展了生成的 Template Haskell 和派生的 Functor 实例。然后我就可以重写descend:
{-# LANGUAGE DeriveTraversable, TypeFamilies #-}
import Data.Maybe (fromMaybe)
import Data.Functor.Foldable (Base, Recursive(..), Corecursive(..))
data MyStructure = Foo Int | Bar String MyStructure | Baz MyStructure MyStructure | Qux Bool Bool MyStructure MyStructure deriving(Eq,Show)
makeReplacements :: [(MyStructure, MyStructure)] -> MyStructure -> MyStructure
makeReplacements replacements structure = fromMaybe (descend structure) (lookup structure replacements)
where
descend :: MyStructure -> MyStructure
descend = embed . fmap (makeReplacements replacements) . project
-- begin code that would normally be auto-generated
data MyStructureF r = FooF Int | BarF String r | BazF r r | QuxF Bool Bool r r deriving(Foldable,Traversable)
instance Functor MyStructureF where
fmap _ (FooF x) = FooF x
fmap f (BarF x y) = BarF x (f y)
fmap f (BazF x y) = BazF (f x) (f y)
fmap f (QuxF x y z w) = QuxF x y (f z) (f w)
type instance Base MyStructure = MyStructureF
instance Recursive MyStructure where
project (Foo x) = FooF x
project (Bar x y) = BarF x y
project (Baz x y) = BazF x y
project (Qux x y z w) = QuxF x y z w
instance Corecursive MyStructure where
embed (FooF x) = Foo x
embed (BarF x y) = Bar x y
embed (BazF x y) = Baz x y
embed (QuxF x y z w) = Qux x y z w
-- end code that would normally be auto-generated
如果我在这里停下来,我已经赢了:我不再需要在descend 中写出所有案例,而且我不会不小心犯像descend (Baz x y) = Baz x (makeReplacements replacements y) 这样的错误(忘记替换内部x)。但是,这里仍然存在显式递归,因为我仍在使用 makeReplacements 在其自己的定义中。我怎样才能重写它以删除它,以便我在递归方案中进行所有递归?
【问题讨论】:
-
我不确定我是否正确地遵循了您的代码,但
descend对我来说看起来像是一个变形。您想首先查看要折叠的节点,看看它是否应该被替换,如果不是,那么您查看变质会给您带来的已经递归折叠的结果。 para 的签名,专门针对您的类型,看起来很有前途吗? -
@amalloy
para是(Base t (t, a) -> a) -> t -> a。对我来说,这看起来很接近,但并不完美。我真的不想要((t, Base t a) -> a) -> t -> a或((t, Base t (t, a)) -> a) -> t -> a以便我可以查看我所在的元素吗?
标签: haskell recursive-datastructures recursion-schemes