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

溫馨提示×

java多個數組排列組合

小億
88
2024-01-05 17:49:48
欄目: 編程語言

要實現多個數組的排列組合,可以使用遞歸的方法。具體步驟如下:

  1. 創建一個遞歸函數,接收三個參數:原始數組集合、當前排列結果、當前處理的數組索引。
  2. 在遞歸函數中,首先檢查當前處理的數組索引是否超出了原始數組集合的長度,如果超出了則將當前排列結果加入到最終結果集合中。
  3. 如果當前處理的數組索引沒有超出原始數組集合的長度,則獲取當前處理的數組,遍歷該數組中的所有元素,并將每個元素添加到當前排列結果中。
  4. 調用遞歸函數自身,將當前排列結果和下一個數組索引作為參數。
  5. 在遞歸函數結束后,返回最終結果集合。

下面是一個示例代碼:

import java.util.ArrayList;
import java.util.List;

public class ArrayPermutation {

    public static List<List<Integer>> permute(int[][] arrays) {
        List<List<Integer>> result = new ArrayList<>();
        permuteHelper(result, new ArrayList<>(), arrays, 0);
        return result;
    }

    private static void permuteHelper(List<List<Integer>> result, List<Integer> current, int[][] arrays, int index) {
        if (index >= arrays.length) {
            result.add(new ArrayList<>(current));
            return;
        }

        int[] array = arrays[index];
        for (int i = 0; i < array.length; i++) {
            current.add(array[i]);
            permuteHelper(result, current, arrays, index + 1);
            current.remove(current.size() - 1);
        }
    }

    public static void main(String[] args) {
        int[][] arrays = {
                {1, 2, 3},
                {4, 5},
                {6, 7, 8}
        };

        List<List<Integer>> result = permute(arrays);
        for (List<Integer> list : result) {
            System.out.println(list);
        }
    }
}

輸出結果為:

[1, 4, 6]
[1, 4, 7]
[1, 4, 8]
[1, 5, 6]
[1, 5, 7]
[1, 5, 8]
[2, 4, 6]
[2, 4, 7]
[2, 4, 8]
[2, 5, 6]
[2, 5, 7]
[2, 5, 8]
[3, 4, 6]
[3, 4, 7]
[3, 4, 8]
[3, 5, 6]
[3, 5, 7]
[3, 5, 8]

以上代碼實現了三個數組的排列組合,你可以根據需要修改原始數組集合,實現任意數量的數組排列組合。

0
通江县| 磐安县| 连云港市| 黄梅县| 金昌市| 甘孜县| 龙岩市| 乌什县| 普安县| 日土县| 凭祥市| 长寿区| 林西县| 新蔡县| 潜山县| 招远市| 海林市| 广宁县| 新竹县| 金山区| 塔河县| 息烽县| 琼结县| 会泽县| 辽宁省| 交口县| 桃江县| 广水市| 兰溪市| 周宁县| 乐陵市| 东港市| 象州县| 珲春市| 佛坪县| 保康县| 玉屏| 茶陵县| 搜索| 仙游县| 张家港市|