JAVA算法 几个数有几种排列组合

你要是智慧盈通的正在面试请别看!!

 static List<int[]> allSorts = new ArrayList<int[]>();
    public static void main(String[] args) {
        int[] numArray = {1, 2, 3, 4, 5,8};
        permutation(numArray, 0, numArray.length - 1);
        int[][] a = new int[allSorts.size()][]; // 你要的二维数组a
        allSorts.toArray(a);
        int count=0;
        // 打印验证
        for (int i=0; i<a.length; i++) {
            int[] nums = a[i];
            Boolean isShow = true;
            List<Integer> list = new ArrayList<>();
            for (int j=0; j<nums.length; j++) {
                if(j==3&&nums[j]==3){
                    isShow=false;
                    break;
                }
                if(j>1&&nums[j]==2&&nums[j-1]!=4){
                    isShow=false;
                    break;
                }else if(j>1&&nums[j]==4&&nums[j-1]!=2){
                    isShow=false;
                    break;
                }
                list.add(nums[j]);
            }
            if(isShow){
                System.out.println(list);
                count++;
            }
        }
        System.out.println("count"+count);
    }

    public static void permutation(int[] nums, int start, int end) {
        if (start == end) { // 当只要求对数组中一个数字进行全排列时,只要就按该数组输出即可
            int[] newNums = new int[nums.length]; // 为新的排列创建一个数组容器
            for (int i=0; i<=end; i++) {
                newNums[i] = nums[i];
            }
            allSorts.add(newNums); // 将新的排列组合存放起来
        } else {
            for (int i=start; i<=end; i++) {
                int temp = nums[start]; // 交换数组第一个元素与后续的元素
                nums[start] = nums[i];
                nums[i] = temp;
                permutation(nums, start + 1, end); // 后续元素递归全排列
                nums[i] = nums[start]; // 将交换后的数组还原
                nums[start] = temp;
            }
        }
    }
    原文作者:I'm the future
    原文地址: https://blog.csdn.net/zhaohan___/article/details/99682628
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞