gpt4 book ai didi

haskell - 使用 concatMap 展平嵌套列表结构会出错

转载 作者:行者123 更新时间:2023-12-05 01:51:23 26 4
gpt4 key购买 nike

问题 7 来自 99 个 Haskell 问题

展平嵌套列表结构

这是我的解决方案:

data NestedList a = Elem a | List [NestedList a]

myFlatten :: NestedList a -> [a]
myFlatten (Elem x) = [x]
myFlatten (List (x:xs)) = x : concatMap myFlatten xs

不过,我想明白...为什么编译器会说:

Occurs check: cannot construct the infinite type: a ~ NestedList a

Expected type: [NestedList a]Actual type: [a]

最佳答案

对于List(x:xs)xxs都是NestedList a,不是as,因此您应该在整个列表上使用 concatMap,其中:

myFlatten :: NestedList a -> [a]
myFlatten (Elem x) = [x]
myFlatten (List <strong>xs</strong>) = concatMap myFlatten <strong>xs</strong>

为了避免在单例列表中包装和展开,您可以使用递归传递给列表的尾部,其中:

myFlatten :: NestedList a -> [a]
myFlatten = (`go` [])
where go (Elem x) = (x :)
go (List xs) = flip (foldr go) xs

关于haskell - 使用 concatMap 展平嵌套列表结构会出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/72239770/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com