codevs——1294 全排列

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了codevs——1294 全排列相关的知识,希望对你有一定的参考价值。

1294 全排列

 

 时间限制: 1 s
 空间限制: 128000 KB
 题目等级 : 黄金 Gold
 
 
题目描述 Description

给出一个n, 请输出n的所有全排列

输入描述 Input Description

读入仅一个整数n   (1<=n<=10)

输出描述 Output Description

一共n!行,每行n个用空格隔开的数,表示n的一个全排列。并且按全排列的字典序输出。

样例输入 Sample Input

3

样例输出 Sample Output

1 2 3

1 3 2

2 1 3

2 3 1

3 1 2

3 2 1

 

#include<cstdio>
#include<cstring>
#include<cstdlib>
#include<iostream>
#include<algorithm>
using namespace std;
bool vis[100];
int n,a[100];
int read()
{
    int x=0,f=1; char ch=getchar();
    while(ch<0||ch>9){if(ch==-)f=-1; ch=getchar();}
    while(ch>=0&&ch<=9){x=x*10+ch-0; ch=getchar();}
    return x*f;
}
void dfs(int now)
{
    if(now==n+1) 
    {
        for(int i=1;i<=n;i++)
         printf("%d ",a[i]);
        printf("\n");
        return ;
    }
    for(int i=1;i<=n;i++)
     if(!vis[i])
     {
         vis[i]=true;
         a[now]=i;
         dfs(now+1);
         vis[i]=false;
     }
    return ;    
}
int main()
{
    n=read();
    dfs(1);
    return 0;
}

 

以上是关于codevs——1294 全排列的主要内容,如果未能解决你的问题,请参考以下文章

codevs 1294 全排列 next_permuntation

[ CodeVS冲杯之路 ] P1294

CODE[VS] 1294 全排列

codevs 1013 求先序排列

codevs 1994 排队 排列组合+高精度

codevs 1013 求先序排列(二叉树遍历)