在Swift中在数组中查找最大值的正确方法

到目前为止,我有一种简单(但可能很昂贵)的方法:

var myMax = sort(myArray,>)[0]

以及如何在学校教我如何做:

var myMax = 0

for i in 0..myArray.count {

if (myArray[i] > myMax){myMax = myArray[i]}

}

有没有更好的方法从Swift中的整数数组获取最大值?理想情况是诸如Ruby之类的单行代码.max

回答:

鉴于:

let numbers = [1, 2, 3, 4, 5]

斯威夫特3:

numbers.min() // equals 1

numbers.max() // equals 5

斯威夫特2:

numbers.minElement() // equals 1

numbers.maxElement() // equals 5

以上是 在Swift中在数组中查找最大值的正确方法 的全部内容, 来源链接: utcz.com/qa/421924.html

回到顶部