1. ホーム
  2. functional-programming

[解決済み] Swiftの配列に対する集合演算(union, intersection)?

2022-10-26 05:10:57

質問

2 つの配列のセット操作を実行するために使用できる標準的なライブラリ呼び出しはありますか、またはそのようなロジックを自分で実装することはできますか (理想的には機能的に、また可能な限り効率的に)。

どのように解決するのですか?

はい、Swiftには Set クラスがあります。

let array1 = ["a", "b", "c"]
let array2 = ["a", "b", "d"]

let set1:Set<String> = Set(array1)
let set2:Set<String> = Set(array2)

Swift 3.0+では、セットに対する操作をasで行うことができます。

firstSet.union(secondSet)// Union of two sets
firstSet.intersection(secondSet)// Intersection of two sets
firstSet.symmetricDifference(secondSet)// exclusiveOr

Swift 2.0は配列の引数で計算できる。

set1.union(array2)       // {"a", "b", "c", "d"} 
set1.intersect(array2)   // {"a", "b"}
set1.subtract(array2)    // {"c"}
set1.exclusiveOr(array2) // {"c", "d"}

Swift 1.2+ではセットで計算できる。

set1.union(set2)        // {"a", "b", "c", "d"}
set1.intersect(set2)    // {"a", "b"}
set1.subtract(set2)     // {"c"}
set1.exclusiveOr(set2)  // {"c", "d"}

カスタム構造体を使用する場合は、Hashableを実装する必要があります。

Swift 2.0のアップデートについて、コメント欄のMichael Sternに感謝します。

コメント中の Amjad Husseini 氏に、Hashable の情報をありがとうございます。