标签:允许 int copy algorithm 复制 pre pac nbsp stream
输出自然数1到n所有不重复的排列,即n的全排列,要求所产生的任一数字序列中不允许出现重复的数字。
输入格式:
n(1≤n≤9)
输出格式:
由1~n组成的所有不重复的数字序列,每行一个序列。每个数字保留5个常宽。
3
1 2 3 1 3 2 2 1 3 2 3 1 3 1 2 3 2 1
#include<cstdio> #include<cstring> #include<iostream> #include<algorithm> #define N 20 using namespace std; bool vis[N]; int n,ans[N]; void dfs(int s) { if(s==n+1) { for(int i=1;i<=n;i++) printf("%5d",ans[i]); printf("\n"); return ; } for(int i=1;i<=n;i++) if(!vis[i]) vis[i]=true,ans[s]=i,dfs(s+1),vis[i]=false; } int main() { scanf("%d",&n); dfs(1); return 0; }
标签:允许 int copy algorithm 复制 pre pac nbsp stream
原文地址:http://www.cnblogs.com/z360/p/7853541.html