摘要: #include<iostream> using namespace std; //八皇后问题 //思路:8*8的dfs,求结果个数问题(外加上条件减支即可) //不用开二维数组 int a[8] = {0}; //a数组用来记录8行中每行皇后的位置,比如a[2]=3就表示第二行的皇后在第三个位置 阅读全文
posted @ 2020-10-06 16:26 py佐料 阅读(118) 评论(0) 推荐(0) 编辑
摘要: 一个对树的最简单的遍历 #include <iostream> #include <cstdio> using namespace std; int a[3]={1,2,3}; int sum=0; void fun(int d) { if(d==3) { sum++; return ; } for 阅读全文
posted @ 2020-10-06 16:24 py佐料 阅读(289) 评论(0) 推荐(0) 编辑