跳到主要内容

深度优先搜索(DFS)

参考资料

例题

洛谷 P1706 全排列问题

按照字典序输出自然数 11nn 所有不重复的排列,即 nn 的全排列。(1n91\le n\le9

#include <bits/stdc++.h>
using namespace std;

const int N=15;
int a[N];
bool vis[N];
void dfs(int s,int n)
{
if(s>n)
{
for(int i=1;i<=n;i++)
{
cout<<setw(5)<<a[i];
}
cout<<'\n';
return;
}
for(int i=1;i<=n;i++)
{
if(!vis[i])
{
a[s]=i;
vis[i]=1;
dfs(s+1,n);
vis[i]=0;
}
}
}
int main()
{
ios::sync_with_stdio(false);
cin.tie(nullptr);
int n;
cin>>n;
dfs(1,n);
return 0;
}