gpt4 book ai didi

haskell - Haskell 中是否有任何终止折叠?

转载 作者:行者123 更新时间:2023-12-02 02:23:13 24 4
gpt4 key购买 nike

如果我已经有了我想要的数据,我需要某种可以终止的折叠。

例如,我需要找到大于 5 的前 3 个数字。我决定使用 Either 终止,我的代码如下所示:

    terminatingFold :: ([b] -> a -> Either [b] [b]) -> [a] -> [b]
terminatingFold f l = reverse $ either id id $ fold [] l
where fold acc [] = Right acc
fold acc (x:xs) = f acc x >>= flip fold xs

first3NumsGreater5 acc x =
if length acc >= 3
then Left acc
else Right (if x > 5 then (x : acc) else acc)

是否有一些更聪明/通用的方法?

最佳答案

您的函数的结果是一个列表,如果它是惰性生成的,那将是可取的,也就是说,从结果中提取一个项目只需要评估输入列表,直到在那里找到该项目。

Unfolds are under-appreciated对于这些类型的任务。与其专注于“消耗”输入列表,不如将其视为一个种子(与一些内部累加器配对),我们可以逐个元素地生成结果。

让我们定义一个 Seed包含通用累加器的类型,该类型与输入中尚未使用的部分配对:

{-# LANGUAGE NamedFieldPuns #-}
import Data.List (unfoldr)

data Seed acc input = Seed {acc :: acc, pending :: [input]}

现在让我们重新制定 first3NumsGreater5作为从 Seed 生成下一个输出元素的函数,没有更多元素的信号:
type Counter = Int

first3NumsGreater5 :: Seed Counter Int -> Maybe (Int, Seed Counter Int)
first3NumsGreater5 (Seed {acc, pending})
| acc >= 3 =
Nothing
| otherwise =
case dropWhile (<= 5) pending of
[] -> Nothing
x : xs -> Just (x, Seed {acc = succ acc, pending = xs})

现在我们的 main 函数可以写成 unfoldr :
unfoldFromList ::
(Seed acc input -> Maybe (output, Seed acc input)) ->
acc ->
[input] ->
[output]
unfoldFromList next acc pending = unfoldr next (Seed {acc, pending})

让它发挥作用:
main :: IO ()
main = print $ unfoldFromList first3NumsGreater5 0 [0, 6, 2, 7, 9, 10, 11]
-- [6,7,9]

关于haskell - Haskell 中是否有任何终止折叠?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61539865/

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