Swift – 在[String]数组中找到最长字符串的最佳实践

前端之家收集整理的这篇文章主要介绍了Swift – 在[String]数组中找到最长字符串的最佳实践前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图找到在字符串数组中获取最长字符串的最有效方法.例如 :
let array = ["I'm Roi","I'm asking here","Game Of Thrones is just good"]

结果将是 – “权力的游戏是好的”

我尝试过使用maxElement函数,因为它给出了字母思想中的最大字符串(maxElement()).

有什么建议?谢谢!

不要为了良好的排序而对O(n log(n))进行排序,而是使用max(by :),它是Array上的O(n),为它提供一个比较字符串长度的闭包:

斯威夫特4:

对于Swift 4,您可以使用String上的count属性获取字符串长度:

let array = ["I'm Roi","Game Of Thrones is just good"]

if let max = array.max(by: {$1.count > $0.count}) {
    print(max)
}

斯威夫特3:

在String上使用.characters.count来获取字符串长度:

let array = ["I'm Roi","Game Of Thrones is just good"]

if let max = array.max(by: {$1.characters.count > $0.characters.count}) {
    print(max)
}

斯威夫特2:

在Array上使用maxElement,为它提供一个比较字符串长度的闭包:

let array = ["I'm Roi","Game Of Thrones is just good"]

if let max = array.maxElement({$1.characters.count > $0.characters.count}) {
    print(max)
}

注意:maxElement是O(n).一个好的排序是O(n log(n)),因此对于大型数组,这将比排序快得多.

原文链接:https://www.f2er.com/swift/319040.html

猜你在找的Swift相关文章