1308. 全排列的结果-深度优先搜索-DFS

1308. 全排列的结果-深度优先搜索-DFS_第1张图片

代码:

#include 
using namespace std;
int n;
int  a[10];
bool r[10];
void print(int k)
{
	for(int i=1; i<=k; i++)
	{
		cout<>n;
	fun(1);
    return 0;
}

你可能感兴趣的:(算法,c++,深度优先)