作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我刚刚在看 Apfelmus' excellent introduction to Finger Trees第二次开始怀疑他对 head 的实现:
import Prelude hiding (head)
data Tree v a = Leaf v a
| Branch v (Tree v a) (Tree v a)
toList :: Tree v a -> [a]
toList (Leaf _ a) = [a]
toList (Branch _ x y) = toList x ++ toList y
head :: Tree v a -> a
head (Leaf _ a) = a
head (Branch _ x _) = head x
import Prelude -- not needed, just for making it obvious
data Tree v a = Leaf v a
| Branch v (Tree v a) (Tree v a) deriving Show
toList :: Tree v a -> [a]
toList (Leaf _ a) = [a]
toList (Branch _ x y) = toList x ++ toList y
head' :: Tree v a -> a
head' = head . toList
最佳答案
是的,head
和 head'
如果交给 GHC,应该具有相同的时间复杂度。我希望有一个小的常数因子差异有利于 head
(也许有 60% 的信心 - 列表融合优化的东西在工作时非常疯狂)。
关于haskell - 指头复杂度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56061160/
我是一名优秀的程序员,十分优秀!