与全排列略微有些不同,只需要将退出条件需要改成 u==r
#include <iostream>
using namespace std;
const int N = 15;
int r,n;
int path[N];
bool st[N];
void dfs(int u)
{
if(u==r)
{
for(int i=0;i<r;i++) printf("%d ",path[i]);
printf("\n");
return;
}
for(int i=1;i<=n;i++)
{
if(!st[i])
{
path[u]=i;
st[i]=true;
dfs(u+1);
st[i]=false;
}
}
}
int main()
{
cin>>n>>r;
dfs(0);
return 0;
}
标签:排列,const,nflsoj,int,dfs,5924
From: https://www.cnblogs.com/xiaozhu0602/p/17602823.html