根据 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
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