D的小L
时间限制:
4000 ms | 内存限制:
65535 KB
难度:
2
-
描述
-
一天TC的匡匡找ACM的小L玩三国杀,但是这会小L忙着哩,不想和匡匡玩但又怕匡匡生气,这时小L给匡匡出了个题目想难倒匡匡(小L很D吧
),有一个数n(0<n<10),写出1到n的全排列,这时匡匡有点囧了
,,,聪明的你能帮匡匡解围吗?
-
输入
- 第一行输入一个数N(0<N<10),表示有N组测试数据。后面的N行输入多组输入数据,每组输入数据都是一个整数x(0<x<10) 输出
-
按特定顺序输出所有组合。
特定顺序:每一个组合中的值从小到大排列,组合之间按字典序排列。
样例输入
-
2 2 3
样例输出
-
12 21 123 132 213 231 312 321
-
在C++的标准函数库STL中,next_permutation()函数用于求数列的全排列。
-
#include <algorithm> bool next_permutation( iterator start, iterator end ); 例如: int main () { int myints[] = {1,2,3}; cout << "The 3! possible permutations with 3 elements:\n"; sort (myints,myints+3); do { cout << myints[0] << " " << myints[1] << " " << myints[2] << endl; } while ( next_permutation (myints,myints+3) ); return 0; }
-
#include<iostream> #include <algorithm> #include<cstring> using namespace std; #include<vector> int main () { int t; cin>>t; int n; while(t--) { cin>>n; int m[1000]; memset(m,0,sizeof(m)); for(int i=0;i<n;i++) m[i]=i+1; do { for(int i=0;i<n;i++) cout<<m[i]; cout<<endl; } while ( next_permutation (m,m+n) ); } return 0; }