bfs
小耗子001
得到的和得不到的都是收获
展开
-
bfs求连通块的个数
#include <iostream>#include <stdio.h> #include <queue>using namespace std;struct node{ int x; int y;};queue<node> Q;const int maxn=200;int map[maxn][maxn];bool book[maxn][maxn]...原创 2018-03-26 13:55:34 · 1932 阅读 · 0 评论 -
bfs走出迷宫
#include <iostream>#include <queue> using namespace std;struct node{ int x,y,step;};queue<node> Q;int m,n;const int maxn=200;char map[maxn][maxn];bool book[maxn][maxn]={false};int ne...原创 2018-03-26 14:20:51 · 235 阅读 · 0 评论 -
patA1091 bfs
#include <iostream>#include <stdio.h>#include <queue>using namespace std;struct node{ int x,y,z;};int m,n,l,T;int map[1300][130][61];bool book[1300][130][61]={false};int next1[6][3]=...原创 2018-03-27 16:27:42 · 136 阅读 · 0 评论