当前位置 : 主页 > 手机开发 > 其它 >

数组 – Swift中Float数组中的Max和min

来源:互联网 收集:自由互联 发布时间:2021-06-11
根据 this answer,要获得阵列的最大值,我们可以做到: let nums = [1, 6, 3, 9, 4, 6];let numMax = nums.reduce(Int.min, { max($0, $1) }) 我们如何为Array Float做同样的事情,因为Float没有min和max? let floats: Arr
根据 this answer,要获得阵列的最大值,我们可以做到:

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

我们如何为Array< Float>做同样的事情,因为Float没有min和max?

let floats: Array<Float> = [2.45, 7.21, 1.35, 10.22, 2.45, 3];
这里给出的解决方案 https://stackoverflow.com/a/24161004/1187415适用于
对于所有可比较元素的序列,因此对于一系列浮点数:

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
网友评论