亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

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
北京市| 紫金县| 乌兰浩特市| 习水县| 新宾| 清河县| 屯留县| 宁河县| 黔南| 海口市| 阳高县| 隆子县| 莱阳市| 宝兴县| 阿拉善右旗| 吉隆县| 大丰市| 德州市| 道孚县| 中阳县| 安庆市| 京山县| 荆州市| 平江县| 阳信县| 蛟河市| 吉林市| 宁河县| 金塔县| 富宁县| 宣恩县| 星子县| 宁波市| 涿鹿县| 洛川县| 个旧市| 晋江市| 辽宁省| 沐川县| 武乡县| 宜都市|