作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在 Haskell 中,据说任何 ADT 都可以表示为乘积之和。我试图找到一种与 Tree
同构的平面类型。 , 在 Data.Tree
.
Tree a = Node a [Tree a] -- has a nested type (List!)
Tree = ??? -- no nested types allowed
L a = 1 + a * L a
T a = a * L (T a)
T a = a * (1 + T a * L (T a))
T a = a * (1 * T a * (1 + T a * L (T a)))
T a = a * (1 + T a * (1 + T a * (1 + T a * L (T a))))
T a = a + a * T a + a * T a * T a ...
T a = a * (T a) ^ 0 + a * (T a) ^ 1 + a * (T a) ^ 2 ...
(T a) - (T a) ^ 2 = a * T a
- (T a) ^ 2 - a * T a + (T a) = 0
T a
, 我找到:
T a = 1 - a
Tree
来自
Data.Tree
所以我可以编写一个与其同构的类型而没有嵌套类型?
最佳答案
一旦你得到
T a = a * (1 + T a * L (T a))
= a + a * T a * L (T a) -- distribute
= a + T a * (a * L (T a)) -- commute and reassociate
= a + T a * T a -- using your original definition of T backwards
data Tree a = Leaf a | InsertLeftmostSubtree (Tree a) (Tree a)
关于haskell - 如何在没有嵌套列表的情况下编写与 Tree 同构的类型?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30700169/
我是一名优秀的程序员,十分优秀!