0.简介
在排列型枚举中,我们从给定的元素集合中选择出若干个元素的所有可能排列,这些排列考虑了元素的顺序.
1.代码模板
#include<bits/stdc++.h>
using namespace std;
int n;
int order[20];
bool chosen[20];
// x代表当前选择位
void DFS(int x) {
// 选满了
if (x == n + 1) {
for(int i = 1; i <= n; i++) {
cout << order[i] << " ";
}
cout << endl;
return;
}
for(int i = 1; i <= n; i++) {
if(chosen[i]) continue;
else {
// 选中当前的数, 进入下一层搜索
chosen[i] = true;
order[x] = i;
DFS(x + 1);
// 不选中,进入下一次循环, 还在当前层
chosen[i] = false;
order[x] = 0;
}
}
}
int main() {
cin >> n;
DFS(1);
return 0;
}
2.使用next_permutation
总是向着更大的字典序方向
#include<bits/stdc++.h>
using namespace std;
int n;
int order[20];
bool chosen[20];
string getStr(int n) {
stringstream ss;
for(int i = 1; i <= n; i++) {
ss << i;
}
return ss.str();
}
int main() {
cin >> n;
string s = getStr(n);
do {
cout << s << '\n';
} while(std::next_permutation(s.begin(), s.end()));
return 0;
}
标签:排列,20,int,getStr,chosen,枚举
From: https://www.cnblogs.com/trmbh12/p/18123080