计算数组数组中的项目?

问题描述 投票:5回答:3

如果我有一个声明为的对象

let compoundArray = [Array<String>]

是否有一个属性可以给我在compoundArray中包含的所有数组中的字符串数?

我可以通过在每个数组中添加所有项目来实现:

var totalCount = 0
for array in compoundArray {
   totalCount += array.count }
//totalCount = total items in all arrays within compoundArray

但这似乎很笨拙,看起来swift会有一个Array的属性/方法来做到这一点,不是吗?

谢谢!

arrays swift
3个回答
9
投票

您可以使用joinedflatMap

使用joined

let count = compoundArray.joined().count

使用flatMap

let count = compoundArray.flatMap({$0}).count

9
投票

您可以使用添加嵌套数组计数

let count = compoundArray.reduce(0) { $0 + $1.count }

大型阵列的性能比较(在发布配置中在MacBook Pro上编译和运行):

let N = 20_000
let compoundArray = Array(repeating: Array(repeating: "String", count: N), count: N)

do {
    let start = Date()
    let count = compoundArray.joined().count
    let end = Date()
    print(end.timeIntervalSince(start))
    // 0.729196012020111
}

do {
    let start = Date()
    let count = compoundArray.flatMap({$0}).count
    let end = Date()
    print(end.timeIntervalSince(start))
    // 29.841913998127
}

do {
    let start = Date()
    let count = compoundArray.reduce(0) { $0 + $1.count }
    let end = Date()
    print(end.timeIntervalSince(start))
    // 0.000432014465332031
}

1
投票

既然你要求一个属性,我想我会指出如何创建一个属性(对于所有的集合,我们在它的时候):

extension Collection where Iterator.Element: Collection {
    var flatCount: Int {
        return self.reduce(0) { $0 + $1.count } // as per Martin R
    }
}

使这个递归似乎是一个interesting exercise

© www.soinside.com 2019 - 2024. All rights reserved.