首页 > 代码库 > poj 1915 BFS 利用 pre 计算步数------------------路径
poj 1915 BFS 利用 pre 计算步数------------------路径
// BFS#include <stdio.h>#include <string.h>int visited[301][301]; // visited 已经访问过了int dic[8][2]={{2,1},{1,2},{-1,2},{-2,1},{-2,-1},{-1,-2},{1,-2},{2,-1}};int head,end,n,ex,ey,sx,sy;struct quene{ int x,y,pre; // pre 前一个结点}q[100000];void bfs(){ int xx,yy; head=0; //队头 下标为0的元素 第一个 head end=1; // 下一次要放的元素 q[end].pre=0; //要放的元素 de 前一个结点 即、
q[end].x=sx; q[end].y=sy; visited[sx][sy]=1; while (head<end) { head++; // 开始往下边走 head++ for (int i=0;i<8;i++) { xx=q[head].x+dic[i][0]; yy=q[head].y+dic[i][1]; if (xx>=0&&xx<n&&yy>=0&&yy<n&&visited[xx][yy]==0) { end++; q[end].x=xx; q[end].y=yy; q[end].pre=head; visited[xx][yy]=1; if (xx==ex&&yy==ey) return; } } }}void getflo(){ int floor=0; while (q[end].pre!=0) // 倒回去 因为 保留了路径 { floor++; end=q[end].pre; } printf("%d\n",floor);}int main(){ int ncase; scanf("%d",&ncase); while (ncase--) { memset(visited,0,sizeof(visited)); //memset(q,0,sizeof(q)); scanf("%d",&n); scanf("%d %d",&sx,&sy); scanf("%d %d",&ex,&ey); if (sx==ex&&sy==ey) { printf("0\n"); continue; } else { bfs(); getflo(); } } return 0;}
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。