可以使用HashSet來求多個數組之間的交集。具體步驟如下:
下面是一個示例代碼:
import java.util.*;
public class ArrayIntersection {
public static void main(String[] args) {
int[] arr1 = {1, 2, 3, 4, 5};
int[] arr2 = {3, 4, 5, 6, 7};
int[] arr3 = {5, 6, 7, 8, 9};
Set<Integer> set = new HashSet<>();
for (int num : arr1) {
set.add(num);
}
for (int i = 1; i < 3; i++) {
Set<Integer> tempSet = new HashSet<>();
for (int num : set) {
if (contains(arr2, num) && contains(arr3, num)) {
tempSet.add(num);
}
}
set = tempSet;
}
System.out.println("Intersection of arrays: " + set);
}
public static boolean contains(int[] arr, int num) {
for (int i : arr) {
if (i == num) {
return true;
}
}
return false;
}
}
注意:這段代碼中使用了一個contains方法來判斷一個數組中是否包含某個元素,這樣可以方便地判斷元素是否在所有數組中出現。