#include<stdio.h>
#include<algorithm>
using namespace std;
int main()
{
int n,p[10];
scanf("%d",&n);
for(int i=0;i<n;i++)
scanf("%d",&p[i]);
sort(p,p+n);//排序之后才能使用;
do{
for(int i=0;i<n;i++)
printf("%d",p[i]);
printf("\n");
}while(next_permutation(p,p+n));
return 0;
}
相关文章
- 11-30[算法]——全排列(Permutation)以及next_permutation
- 11-30poj1256(全排列stl)
- 11-30C++STL全排列
- 11-30stl 生产全排列 next_permutation
- 11-30关于全排列--手写next_permutation()函数
- 11-30组合数学-next_permutation全排列
- 11-30next_permutation(全排列算法)
- 11-30全排列函数next_permutation 用法
- 11-30全排列函数next_permutation函数
- 11-30hdu1027 Ignatius and the Princess II (全排列 & STL中的神器)