本文主要是介绍【SSL】1280 全排列,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
全排列
Link
解题思路
用 S T L STL STL 中的 n e x t _ p e r m u t a t i o n next\_permutation next_permutation 直接生成全排列。
code
#include<algorithm>
#include<iostream>
#include<cstdio>
using namespace std;int n;
int a[10];int main()
{cin>>n;for(int i=1;i<=n;i++)a[i]=i;do{for(int i=1;i<=n;i++)printf("%d ",a[i]);printf("\n");}while(next_permutation(a+1,a+n+1));
}
这篇关于【SSL】1280 全排列的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!