gpt4 book ai didi

f# - 通过F#中的条件公式创建循环序列

转载 作者:行者123 更新时间:2023-12-04 13:37:46 26 4
gpt4 key购买 nike

再会。
创建序列(可能是有限的)或通过以下公式列出的最佳方法是什么?

enter image description here

enter image description here

例如,从1到9将会是

1, 2, 4, 5, 10, 11, 22, 23, 46



我认为可以在此处使用 List.fold List.scan ,但是我不知道在哪里写 yield

最佳答案

您可以使用可变值和for循环来实现。另外,也可以使用unfold:

Seq.unfold (fun (a,i) -> 
let a' =
if i % 2 = 0
then a*2
else a+1
Some (a', (a',i+1)))
(1,1)
|> Seq.append [1]

关于f# - 通过F#中的条件公式创建循环序列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34919128/

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