- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
考虑一个单链表。它看起来像
data List x = Node x (List x) | End
reduce :: (x -> y -> y) -> y -> List x -> y
reduce f x0
替换每个
Node
与
f
和每个
End
与
x0
.这就是 Prelude 所说的折叠。
data Tree x = Leaf x | Branch (Tree x) (Tree x)
reduce :: (y -> y -> y) -> (x -> y) -> Tree x -> y
par
组合器在那里。 (你会把这样的东西放在列表版本中的什么地方?)
最佳答案
Tikhon 搞定了技术问题。我想我会尽量简化他所说的。
不幸的是,多年来,“折叠”一词变得模棱两可,表示以下两件事之一:
Foldable
中“折叠”的含义。类,这是拉斯曼斯提出的。 Fix
和代数之类的东西是矫枉过正的。让我们找出一种更简单的方法来为任何代数数据类型编写折叠。我们将使用
Maybe
,对,列表和树作为我们的例子:
data Maybe a = Nothing | Just a
data Pair a b = Pair a b
data List a = Nil | Cons a (List a)
data Tree x = Leaf x | Branch (Tree x) (Tree x)
data BTree a = Empty | Node a (BTree a) (BTree a)
Pair
不是递归的;我要展示的过程并不假设“折叠”类型是递归的。人们通常不称这种情况为“折叠”,但它确实是同一概念的非递归情况。
r
(对于“结果”)。所以:
foldMaybe :: ... -> Maybe a -> r
foldPair :: ... -> Pair a b -> r
foldList :: ... -> List a -> r
foldTree :: ... -> Tree a -> r
foldBTree :: ... -> BTree a -> r
Pair
有一个构造函数,我们的其他例子有两个,所以:
foldMaybe :: nothing -> just -> Maybe a -> r
foldPair :: pair -> Pair a b -> r
foldList :: nil -> cons -> List a -> r
foldTree :: leaf -> branch -> Tree a -> r
foldBTree :: empty -> node -> BTree a -> r
Nothing :: Maybe a
Just :: a -> Maybe a
Pair :: a -> b -> Pair a b
Nil :: List a
Cons :: a -> List a -> List a
Leaf :: a -> Tree a
Branch :: Tree a -> Tree a -> Tree a
Empty :: BTree a
Node :: a -> BTree a -> BTree a -> BTree a
r
替换它构造的所有出现的数据类型。 (我们在折叠签名中使用的):
nothing := r
just := a -> r
pair := a -> b -> r
nil := r
cons := a -> r -> r
leaf := a -> r
branch := r -> r -> r
empty := r
node := a -> r -> r -> r
foldMaybe :: r -> (a -> r) -> Maybe a -> r
foldPair :: (a -> b -> r) -> Pair a b -> r
foldList :: r -> (a -> r -> r) -> List a -> r
foldTree :: (a -> r) -> (r -> r -> r) -> Tree a -> r
foldBTree :: r -> (a -> r -> r -> r) -> BTree a -> r
data
中的折叠类型机械地做到了这一点。声明和构造函数类型,但出于某种原因,在函数式编程中,通常将基本情况放在
data
中。定义但递归案例处理程序首先在
fold
定义。没问题!让我们重新调整它们,使它们更传统:
foldMaybe :: (a -> r) -> r -> Maybe a -> r
foldPair :: (a -> b -> r) -> Pair a b -> r
foldList :: (a -> r -> r) -> r -> List a -> r
foldTree :: (r -> r -> r) -> (a -> r) -> Tree a -> r
foldBTree :: (a -> r -> r -> r) -> r -> BTree a -> r
foldBTree
并逐步实现。给定类型的折叠是我们发现的满足此条件的类型的一个函数:使用类型的构造函数折叠是对该类型的标识函数(您得到与开始时的值相同的结果)。
foldBTree :: (a -> r -> r -> r) -> r -> BTree a -> r
foldBTree = ???
foldBTree :: (a -> r -> r -> r) -> r -> BTree a -> r
foldBTree branch empty tree = ???
data
声明,我们知道
BTree
有两个可能的构造函数。我们可以将定义拆分为每个案例,并为其元素填写变量:
foldBTree :: (a -> r -> r -> r) -> r -> BTree a -> r
foldBTree branch empty Empty = ???
foldBTree branch empty (Branch a l r) = ???
-- Let's use comments to keep track of the types:
-- a :: a
-- l, r :: BTree a
undefined
的东西,填写第一个方程的唯一方法是使用
empty
:
foldBTree :: (a -> r -> r -> r) -> r -> BTree a -> r
foldBTree branch empty Empty = empty
foldBTree branch empty (Branch a l r) = ???
-- a :: a
-- l, r :: BTree a
undefined
,我们有这个:
branch :: a -> r -> r -> r
a :: a
l, r :: BTree a
subfold :: BTree a -> r
, 我们可以做
branch a (subfold l) (subfold r) :: r
.但是当然,我们可以轻松地编写“子折叠”:
foldBTree :: (a -> r -> r -> r) -> r -> BTree a -> r
foldBTree branch empty Empty = empty
foldBTree branch empty (Branch a l r) = branch a (subfold l) (subfold r)
where subfold = foldBTree branch empty
BTree
的折叠, 因为
foldBTree Branch Empty anyTree == anyTree
.请注意
foldBTree
不是这种类型的唯一功能;还有这个:
mangleBTree :: (a -> r -> r -> r) -> r -> BTree a -> r
mangleBTree branch empty Empty = empty
mangleBTree branch empty (Branch a l r) = branch a (submangle r) (submangle l)
where submangle = mangleBTree branch empty
mangleBTree
没有所需的属性(property);例如,如果我们有
foo = Branch 1 (Branch 2 Empty Empty) Empty
,由此可知
mangleBTree Branch Empty foo /= foo
.所以
mangleBTree
,虽然它有正确的类型,但不是折叠。
mangleTree
的最后一点。例子。折叠(在结构意义上,我的答案顶部的 #2)无非是代数类型的最简单、非平凡的函数,这样,当您传入类型的构造函数作为其参数时,它成为该类型的恒等函数。 (非平凡我的意思是像
foo f z xs = xs
这样的东西是不允许的。)
tail :: [a] -> [a]
与 foldr
、 (:)
和 []
一起编写,这是一个痛苦的练习。) data
的情况下实现任何代数类型声明或构造函数,只使用折叠:
{-# LANGUAGE RankNTypes #-}
-- | A Church-encoded list is a function that takes the two 'foldr' arguments
-- and produces a result from them.
newtype ChurchList a =
ChurchList { runList :: forall r.
(a -> r -> r) -- ^ first arg of 'foldr'
-> r -- ^ second arg of 'foldr'
-> r -- ^ 'foldr' result
}
-- | Convenience function: make a ChurchList out of a regular list
toChurchList :: [a] -> ChurchList a
toChurchList xs = ChurchList (\kons knil -> foldr kons knil xs)
-- | 'toChurchList' isn't actually needed, however, we can make do without '[]'
-- completely.
cons :: a -> ChurchList a -> ChurchList a
cons x xs = ChurchList (\f z -> f x (runlist xs f z))
nil :: ChurchList a
nil = ChurchList (\f z -> z)
foldr' :: (a -> r -> r) -> r -> ChurchList a -> r
foldr' f z xs = runList xs f z
head :: ChurchList a -> Maybe a
head = foldr' ((Just .) . const) Nothing
append :: ChurchList a -> ChurchList a -> ChurchList a
append xs ys = foldr' cons ys xs
-- | Convert a 'ChurchList' to a regular list.
fromChurchList :: ChurchList a -> [a]
fromChurchList xs = runList xs (:) []
RankNTypes
扩展名—
read this for a primer)。这种技术被称为
Church encoding ,有时在实际编程中很有用——例如,GHC 使用名为
foldr
的东西。/
build
融合优化列表代码以删除中间列表;见
this Haskell Wiki page ,并注意
build
的类型:
build :: (forall b. (a -> b -> b) -> b -> b) -> [a]
build g = g (:) []
newtype
,这和我的
fromChurchList
一样以上。基本上,GHC 用于优化列表处理代码的规则之一是:
-- Don't materialize the list if all we're going to do with it is
-- fold it right away:
foldr kons knil (fromChurchList xs) ==> runChurchList xs kons knil
map
之类的函数。可以融合成一个紧密的循环。
关于haskell - 什么构成了列表以外类型的折叠?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16426463/
我正在尝试编写一个相当多态的库。我遇到了一种更容易表现出来却很难说出来的情况。它看起来有点像这样: {-# LANGUAGE ScopedTypeVariables #-} {-# LANGUAGE
谁能解释一下这个表达式是如何工作的? type = type || 'any'; 这是否意味着如果类型未定义则使用“任意”? 最佳答案 如果 type 为“falsy”(即 false,或 undef
我有一个界面,在IAnimal.fs中, namespace Kingdom type IAnimal = abstract member Eat : Food -> unit 以及另一个成功
这个问题在这里已经有了答案: 关闭 10 年前。 Possible Duplicate: What is the difference between (type)value and type(va
在 C# 中,default(Nullable) 之间有区别吗? (或 default(long?) )和 default(long) ? Long只是一个例子,它可以是任何其他struct类型。 最
假设我有一个案例类: case class Foo(num: Int, str: String, bool: Boolean) 现在我还有一个简单的包装器: sealed trait Wrapper[
这个问题在这里已经有了答案: Create C# delegate type with ref parameter at runtime (1 个回答) 关闭 2 年前。 为了即时创建委托(dele
我正在尝试获取图像的 dct。一开始我遇到了错误 The function/feature is not implemented (Odd-size DCT's are not implemented
我正在尝试使用 AFNetworking 的 AFPropertyListRequestOperation,但是当我尝试下载它时,出现错误 预期的内容类型{( “应用程序/x-plist” )}, 得
我在下面收到错误。我知道这段代码的意思,但我不知道界面应该是什么样子: Element implicitly has an 'any' type because index expression is
我尝试将 SignalType 从 ReactiveCocoa 扩展为自定义 ErrorType,代码如下所示 enum MyError: ErrorType { // .. cases }
我无法在任何其他问题中找到答案。假设我有一个抽象父类(super class) Abstract0,它有两个子类 Concrete1 和 Concrete1。我希望能够在 Abstract0 中定义类
我想知道为什么这个索引没有用在 RANGE 类型中,而是用在 INDEX 中: 索引: CREATE INDEX myindex ON orders(order_date); 查询: EXPLAIN
我正在使用 RxJava,现在我尝试通过提供 lambda 来订阅可观察对象: observableProvider.stringForKey(CURRENT_DELETED_ID) .sub
我已经尝试了几乎所有解决问题的方法,其中包括。为 提供类型使用app.use(express.static('public'))还有更多,但我似乎无法为此找到解决方案。 index.js : imp
以下哪个 CSS 选择器更快? input[type="submit"] { /* styles */ } 或 [type="submit"] { /* styles */ } 只是好
我不知道这个设置有什么问题,我在 IDEA 中获得了所有注释(@Controller、@Repository、@Service),它在行号左侧显示 bean,然后转到该 bean。 这是错误: 14-
我听从了建议 registering java function as a callback in C function并且可以使用“简单”类型(例如整数和字符串)进行回调,例如: jstring j
有一些 java 类,加载到 Oracle 数据库(版本 11g)和 pl/sql 函数包装器: create or replace function getDataFromJava( in_uLis
我已经从 David Walsh 的 css 动画回调中获取代码并将其修改为 TypeScript。但是,我收到一个错误,我不知道为什么: interface IBrowserPrefix { [
我是一名优秀的程序员,十分优秀!