CodeVS1294 全排列 题解

#include 
using namespace std;

bool flag[10+2];
int N, ans[10+2];

void Array(int n){
    if(n>=N){
        printf("%d", *ans);
        for(int i = 1; i

你可能感兴趣的:(深度优先搜索)