gpt4 book ai didi

random - 如何使用F#从列表中选择一个随机值

转载 作者:行者123 更新时间:2023-12-04 09:03:14 25 4
gpt4 key购买 nike

我是F#的新手,我试图弄清楚如何从字符串列表/字符串数组中返回随机字符串值。

我有一个这样的 list :

["win8FF40", "win10Chrome45", "win7IE11"]

如何从上面的列表中随机选择并返回一项?

这是我的第一次尝试:

let combos = ["win8FF40";"win10Chrome45";"win7IE11"]  

let getrandomitem () =
let rnd = System.Random()
fun (combos : string[]) -> combos.[rnd.Next(combos.Length)]

最佳答案

您的问题是您混用了Array和F#List(*type*[]Array的类型符号)。您可以像这样修改它以使用列表:

let getrandomitem () =  
let rnd = System.Random()
fun (combos : string list) -> List.nth combos (rnd.Next(combos.Length))

话虽如此,索引 List通常不是一个好主意,因为它具有O(n)性能,因为F#列表基本上是链接列表。如果可能的话,最好将 combos制成数组:

let combos = [|"win8FF40";"win10Chrome45";"win7IE11"|]  

关于random - 如何使用F#从列表中选择一个随机值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33312260/

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