中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

java怎么求多個數組之間的交集

小億
83
2024-03-07 14:50:22
欄目: 編程語言

可以使用HashSet來求多個數組之間的交集。具體步驟如下:

  1. 將第一個數組轉換為HashSet。
  2. 遍歷其他數組,將其中的元素添加到第一個數組的HashSet中。
  3. 最后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方法來判斷一個數組中是否包含某個元素,這樣可以方便地判斷元素是否在所有數組中出現。

0
平利县| 庆安县| 泾阳县| 安达市| 神农架林区| 左云县| 巴彦县| 阿合奇县| 云安县| 资源县| 赤城县| 晴隆县| 辉县市| 沙湾县| 宁明县| 措美县| 陵水| 枣庄市| 南雄市| 墨玉县| 望都县| 丹阳市| 安阳市| 吉安市| 肇庆市| 宁津县| 姜堰市| 双城市| 贵南县| 金阳县| 日照市| 辽中县| 巍山| 茂名市| 宿州市| 屯留县| 江口县| 祁阳县| 娱乐| 防城港市| 台州市|