摘要: 问题一:题意:输入一个整数n(n <= 9),输出1、2、3、······、n这n个数的全排列(按照字典序输出)。 方法1:暴力写法 1 #include<bits/stdc++.h> 2 using namespace std; 3 4 int main(){ 5 int n=3, a[20];/ 阅读全文
posted @ 2019-11-28 09:15 TFLSNOI 阅读(657) 评论(0) 推荐(0)