arrays - Swift - 根据相同的特征对元素进行分组

标签 arrays swift

在 Swift 4 中,我有:

let customers = [Customer(name: "John", country: "US", profession: "Engineer"), Customer(name: "Mary", country: "UK", profession: "Nurse"), Customer(name: "Diana", country: "US", profession: "Engineer"), Customer(name: "Paul", country: "US", profession: "Plumber"), Customer(name: "Sam", country: "UK", profession: "Nurse")]

我想有一个函数可以过滤 customers 中的元素,这样每次其中至少 2 个元素的名称和职业相等时,它们就会被添加到一个此函数自动创建的数组:

var customers1 = [Customer(name: "John", country: "US", profession: "Engineer"), Customer(name: "Diana", country: "US", profession: "Engineer")]
var customers2 = [Customer(name: "Mary", country: "UK", profession: "Nurse"), Customer(name: "Sam", country: "UK", profession: "Nurse")]

我搜索没有成功,但是我选择了一些可能适用于这种情况的解决方案:

extension Array where Element: Comparable {
    func containsSameElements(as other: [Element]) -> Bool {
        return self[1] == other[1] && self[2] == other[2]
    }
}

func ==<Element : Equatable> (lhs: [[Element]], rhs: [[Element]]) -> Bool {
    return lhs.elementsEqual(rhs, by: ==)
}

elementsEqual()/contains() 带循环。

flatMap()/reduce()/filter() 的组合。

谢谢。

最佳答案

根据您的反馈和说明,我会做这样的事情。

struct CountryAndProfession: Hashable, CustomStringConvertible {

    let country: String
    let profession: String


    var description: String {
        return "CountryAndProfession{country: \(country), profession: \(profession)}"
    }

    var hashValue: Int {
        return "\(country)__\(profession)".hashValue
    }
    static func ==(left: CountryAndProfession, right: CountryAndProfession) -> Bool {
        return left.country == right.country && left.profession == right.profession
    }
}

// The Customer Type you apparently are dealing with. (May need a custom init depending on your use case
struct Customer: CustomStringConvertible {
    let name: String
    let countryAndProfession: CountryAndProfession

    var description: String {
        return "Customer{name: \(name), countryAndProfession: \(countryAndProfession)}"
    }

    // returns a dictionary with the passed customer's CountryAndProfession as the key, and the matching
    static func makeDictionaryWithCountryAndProfession(from customers: [Customer]) -> [CountryAndProfession : [Customer]] {
        var customersArrayDictionary: [CountryAndProfession : [Customer]] = [:]

        customers.forEach { (customer) in
            if customersArrayDictionary.keys.contains(customer.countryAndProfession) {
                customersArrayDictionary[customer.countryAndProfession]?.append(customer)
            }
            else {
                customersArrayDictionary[customer.countryAndProfession] = [customer]
            }
        }
        return customersArrayDictionary
    }

    static func getArraysBasedOnCountries(from customerArray: [Customer]) -> [[Customer]] {
        return Array(makeDictionaryWithCountryAndProfession(from: customerArray).values)
    }
}

let arrayOfArrays = [["John", "A", "A" ], ["Mary", "A", "B" ], ["Diana", "A", "A" ], ["Paul", "B", "B" ], ["Sam", "A", "B" ]]

//If you're dealing with non-predictable data, you should probably have some Optionality
let allCustomers = arrayOfArrays.map{ Customer(name: $0[0], countryAndProfession: CountryAndProfession(country: $0[1], profession: $0[2])) }

let splitCustomers = Customer.getArraysBasedOnCountries(from: allCustomers)
//contains [[John, Diana], [Mary, Sam], [Paul]]

我仍然不太确定您希望最终结果是什么样的(提出问题总是有帮助的),但是您应该能够使用 获得您正在寻找的结果makeDictionaryWithCountryAndProfession 与您正在寻找或使用的特定 CountryAndProfession 相结合 .filter

关于arrays - Swift - 根据相同的特征对元素进行分组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46202393/

相关文章:

ios - 无法使用参数列表 '((_) -> _)' 调用筛选器 [已实现可等式]

ios - 解析查询 containedIn 不返回任何值

iphone - 从 Linphone 调用中获取来电号码

python - 使用 Python lambda 函数查找 fmin

Java:见过编译器或工具拒绝数组初始值设定项中的最后一个逗号吗?

c - 内存地址

swift - 在场景之间转换时保留循环问题

java - 如何复用 ArrayDescriptor?

c++ - C++中具有可变尺寸的二维数组

ios - Tabbar 选择 UIViewController 后 UIView 不会动画