排列组合

2018-11-08  本文已影响20人  jdzhangxin

排列(Arrangement/Permutation)

百度百科:
n个不同元素中取出m(mn)个元素,按照一定的顺序排成一列,叫做从n个元素中取出m个元素的一个排列。
n个不同元素中取出m个不同元素,所有不同排列的个数称为排列种数或称排列数,记为A_n^mA(n,m)(线性写法)。

排列数旧版使用P_n^m,新版使用A_n^m,二者含义相同。

do{
    // 排列的各种情况
}while(next_permutation(first,last));
#include <bits/stdc++.h>
using namespace std;

int main(){
    int n=0;
    scanf("%d",&n);
    int arr[n];
    for(int i=0;i<n;++i){
        arr[i] = i;
    }
    do{
        for(int i=0;i<n;++i){
            printf("%d ",arr[i]);
        }
        printf("\n");
    }while(next_permutation(arr,arr+n));
}

组合(Combination)

百度百科:
n个不同的元素中,任取m(mn)个元素为一组,叫作从n个不同元素中取出m个元素的一个组合。
n个元素中不重复地选取m个元素的一个组合。所有这样的组合的总数称为组合数,记作C_n^mC(n,m)(线性写法)。

1. 增量构造法

#include <bits/stdc++.h>
using namespace std;

void combination(int n,int *A,int cur){
    for(int i=0;i<cur;++i) printf("%d ",A[i]);
    printf("\n");
    int s = cur?A[cur-1]+1:0;// 确定当前元素最小可能值
    for(int i=s;i<n;++i){
        A[cur]=i;
        combination(n,A,cur+1);
    }
}
int main(){
    int n=0;
    scanf("%d",&n);
    int arr[n];
    combination(n,arr,0);
}

执行分析

迭代是横向思维(红色箭头),递归是纵向思维(黄色箭头)。



对应访问树结构(准确的讲是DAG)也是迭代访问兄弟节点(红色箭头),递归访问后代节点(黄色箭头)。


下面是演示n为不同值时函数调用的情况。缩进表示递归,缩进相同的表示迭代。

combination([],0)
 combination([0 ],1)
combination([],0)
 combination([0 ],1)
  combination([0 1 ],2)
 combination([1 ],1)
combination([],0)
 combination([0 ],1)
  combination([0 1 ],2)
   combination([0 1 2 ],3)
  combination([0 2 ],2)
 combination([1 ],1)
  combination([1 2 ],2)
 combination([2 ],1)
combination([],0)
 combination([0 ],1)
  combination([0 1 ],2)
   combination([0 1 2 ],3)
    combination([0 1 2 3 ],4)
   combination([0 1 3 ],3)
  combination([0 2 ],2)
   combination([0 2 3 ],3)
  combination([0 3 ],2)
 combination([1 ],1)
  combination([1 2 ],2)
   combination([1 2 3 ],3)
  combination([1 3 ],2)
 combination([2 ],1)
  combination([2 3 ],2)
 combination([3 ],1)
combination([],0)
 combination([0 ],1)
  combination([0 1 ],2)
   combination([0 1 2 ],3)
    combination([0 1 2 3 ],4)
     combination([0 1 2 3 4 ],5)
    combination([0 1 2 4 ],4)
   combination([0 1 3 ],3)
    combination([0 1 3 4 ],4)
   combination([0 1 4 ],3)
  combination([0 2 ],2)
   combination([0 2 3 ],3)
    combination([0 2 3 4 ],4)
   combination([0 2 4 ],3)
  combination([0 3 ],2)
   combination([0 3 4 ],3)
  combination([0 4 ],2)
 combination([1 ],1)
  combination([1 2 ],2)
   combination([1 2 3 ],3)
    combination([1 2 3 4 ],4)
   combination([1 2 4 ],3)
  combination([1 3 ],2)
   combination([1 3 4 ],3)
  combination([1 4 ],2)
 combination([2 ],1)
  combination([2 3 ],2)
   combination([2 3 4 ],3)
  combination([2 4 ],2)
 combination([3 ],1)
  combination([3 4 ],2)
 combination([4 ],1)

2. 位向量法

#include <bits/stdc++.h>
using namespace std;

void combination(int n,bool *bits,int cur){
    if(cur == n){
        for(int i=0;i<cur;++i) {
            if(bits[i]) printf("%d ",i);
        }
        printf("\n");
        return;
    }
    
    bits[cur] = true;
    combination(n,bits,cur+1);
    bits[cur] = false;
    combination(n,bits,cur+1);
}
int main(){
    int n=0;
    scanf("%d",&n);
    bool bits[n];
    combination(n,bits,0);
}

3. 二进制法

#include <bits/stdc++.h>
using namespace std;

void combination(int n){
    int size = pow(2,n); // 也可以这样 1<<n;
    for(int i = 0; i < size; ++i){// 遍历二进制数
        for(int j = 0; j < n; ++j){// 遍历0~n的数组
            if((i>>j)&1 == 1){ // 如果对应二进制数为1,表示选择
                cout << j << " ";
            }
        }
        printf("\n");
    }
}
int main() {
   int n = 0;
   scanf("%d",&n);
   combination(n);
   return 0;
}

总结

n=5时,下面是各种方法的输出结果:

4. 应用

  1. 已知大小为n数列arr,求数列的所有组合结果(所有子集)。
  1. 已知字符串s,求字符串的所有组合结果(所有子集)。

5. 分类计数原理

上一篇 下一篇

猜你喜欢

热点阅读