排列组合的模板算法

排列组合(百度百科)

排列组合是组合学最基本的概念。所谓排列,就是指从给定个数的元素中取出指定个数的元素进行排序。组合则是指从给定个数的元素仅仅取出指定个数的元素,不考虑排序。排列组合的中心问题是研究给定要求的排列和组合可能出现的情况总数。排列组合与古典概率论关系密切。

举例说明


//abc的排列
abc  acb  bac  bca  cba  cab
共有6种排序

//abc的组合
33的可能:abc
32的可能:ab  ac  bc
31的可能:a  b  c

排列模板代码

/**
 * @author god-jiang
 * @date 2020/3/23  14:31
 */
public class Permutation {
    //全排列
    public static void perm(char[] arr, int start, int len) {
        if (start == len - 1) {
            for (int i = 0; i < len; i++) {
                System.out.print(arr[i]);
            }
            System.out.println();
        } else {
            for (int i = start; i < len; i++) {
                swap(arr, start, i);
                perm(arr, start + 1, len);
                swap(arr, start, i);
            }
        }
    }

    //交换两个数
    public static void swap(char[] arr, int i, int j) {
        char temp = arr[i];
        arr[i] = arr[j];
        arr[j] = temp;
    }

    public static void main(String[] args) {
        char[] arr = "abc".toCharArray();
        perm(arr, 0, arr.length);
    }
}

在这里插入图片描述


组合模板代码

import java.util.Arrays;

/**
 * @author god-jiang
 * @date 2020/3/23  14:57
 */
public class Combination {
    public static void combination (char[] input, char[] output, int index, int start) {
        if (index == output.length) {
            System.out.println(Arrays.toString(output));
        } else {
            for (int j = start; j < input.length; j++) {
                output[index] = input[j];
                combination (input, output, index + 1, j + 1);
            }
        }
    }

    public static void main(String[] args) {
        char[] input = "abc".toCharArray();
        //N表示组合中取几位数
        int N = 2;
        char[] output = new char[N];
        combination (input, output, 0, 0);
    }
}

在这里插入图片描述

PS:一般比赛或者笔试都可以直接当作模板来使用。就好比,蓝桥杯比赛和牛客网笔试要带输入输出模板一样。然后就是希望对你们有所帮助。

发布了6 篇原创文章 · 获赞 6 · 访问量 150

猜你喜欢

转载自blog.csdn.net/weixin_37686415/article/details/105049120