AcWing 842. 排列数字 DFS
Posted 嗯我想想
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了AcWing 842. 排列数字 DFS相关的知识,希望对你有一定的参考价值。
思路分析:
DFS深度优先搜索,就是按照每一位进行搜索,然后用过的数有一个标识即可
AC代码:
#include <iostream>
using namespace std;
const int N = 10;
int path[N];
bool st[N];
int n;
void dfs(int u) {
if(u == n) {
for(int i = 0; i < n; i++) {
if(i != n - 1)
cout << path[i] << ' ';
else
cout << path[i] << endl;
}
return;
}
for(int i = 1; i <= n; i++)
if(!st[i]) {
path[u] = i;
st[i] = true;
// 进入下一个分支
dfs(u + 1);
// dfs回来之后,需要恢复现场
st[i] = false;
}
}
int main() {
while(cin >> n) {
dfs(0);
}
return 0;
}
以上是关于AcWing 842. 排列数字 DFS的主要内容,如果未能解决你的问题,请参考以下文章