作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个Traversable
,里面有洞——想象一下这个二叉树:
/ \
/ \ Nothing
Just 1 / \
Nothing Just 3
我还有一个值列表来填补漏洞 - [2, 4]
- 结果是:
/ \
/ \ Just 4
Just 1 / \
Just 2 Just 3
我认为可以使用 lens
索引遍历来遍历 Nothing
并将它们替换为列表中相应索引处的值。
但是不使用索引一定可以直接做更多的事情吗?
奖励积分——这个主题的一些变化:
也许
表示。[2, 4, 6]
, [2, 4, ..]
等最佳答案
利用mapAccumL
的简单(但部分)解决方案:
import qualified Data.Traversable as T
fill :: forall a t. T.Traversable t => t (Maybe a) -> [a] -> t a
fill t fillers = snd $ T.mapAccumL go fillers t
where
go :: [a] -> Maybe a -> ([a], a)
go fs (Just x) = (fs, x)
go (f:fs) Nothing = (fs, f)
go [] Nothing = error "not enough fillers!"
完全的替代方案:
fill2 :: forall a t. T.Traversable t =>
t (Maybe a) -> [a] -> Maybe (t a)
fill2 t fillers = sequenceA . snd $ T.mapAccumL go fillers t
where
go :: [a] -> Maybe a -> ([a], Maybe a)
go (f:fs) Nothing = (fs, Just f)
go fs x = (fs, x)
关于haskell - 压缩遍历,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38661831/
我是一名优秀的程序员,十分优秀!