2020年3月29日

摘要: 广度优先搜索解迷宫问题 #include<iostream> using namespace std; struct node{ int x; int y; int step; }; char map[1000][1000]; bool book[1000][1000]; int n,m,tx,ty 阅读全文
posted @ 2020-03-29 21:04 二进制dd 阅读(196) 评论(0) 推荐(0) 编辑
摘要: DFS:一条路走到黑 1.全排列问题: #include<iostream> using namespace std; int a[1000],book[1000]; int n; void dfs(int step){ if(step==n+1){ for(int i=1;i<=n;i++){ i 阅读全文
posted @ 2020-03-29 15:13 二进制dd 阅读(182) 评论(0) 推荐(0) 编辑

导航