全排列问题方法全排列+检查 递归+回溯(剪枝)
模板// 转换为一维问题
#include <iostream>
int a[n];
int ans=0;
bool check(){}
void f(int k)
{
if (
2021-04-12