gpt4 book ai didi

arrays - Swift 中 Float 数组中的最大值和最小值

转载 作者:搜寻专家 更新时间:2023-10-31 21:50:14 24 4
gpt4 key购买 nike

根据 this answer , 要获得数组的最大值,我们可以这样做:

let nums = [1, 6, 3, 9, 4, 6];
let numMax = nums.reduce(Int.min, { max($0, $1) })

我们如何对 Array<Float> 做同样的事情? , 因为没有 minmax对于 Float

let floats: Array<Float> = [2.45, 7.21, 1.35, 10.22, 2.45, 3];

最佳答案

这里给出的解决方案https://stackoverflow.com/a/24161004/1187415效劳于对于可比较元素的所有序列,因此也对于 float 数组:

let floats: Array<Float> = [2.45, 7.21, 1.35, 10.22, 2.45, 3]
let numMax = maxElement(floats)

maxElement() 在 Swift 库中定义为

/// Returns the maximum element in `elements`.  Requires:
/// `elements` is non-empty. O(countElements(elements))
func maxElement<R : SequenceType where R.Generator.Element : Comparable>(elements: R) -> R.Generator.Element

关于arrays - Swift 中 Float 数组中的最大值和最小值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26586435/

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