全排列(next_permutation)
Posted ygeloutingyu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了全排列(next_permutation)相关的知识,希望对你有一定的参考价值。
next_permutation函数既可用于非重排列也可用于重排列;
#include <bits/stdc++.h>
#define MAXN 200000+10
#define ll long long
using namespace std;
int a[MAXN];
int main(void)
{
int n;
cin >> n;
for(int i=0; i<n; i++)
cin >> a[i];
sort(a, a+n);
do
{
for(int i=0; i<n; i++)
cout << a[i] << " ";
cout << endl;
}while(next_permutation(a, a+n));
return 0;
}
以上是关于全排列(next_permutation)的主要内容,如果未能解决你的问题,请参考以下文章
next_permutation 与 prev_permutation(全排列算法)