- 1、本文档共42页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
【深搜参考程序】 program EX8_4_1; const maxn=50; var map:array [1..maxn,1..maxn] of integer; f:boolean; n,m,i,j,desx,desy,soux,souy,totstep:integer; route:array[1..maxn] of record x,y : integer; end; procedure move(x,y,step:integer); begin map[x,y]:=step; //走一步,作标记,把步数记下来 route[step].x := x; route[step].y:= y; //记路径 if (x=desx) and (y=desy) then begin f:=true; totstep:=step; end else begin if (ym) and (map[x,y+1]=0) then move (x,y+1,step+1); //向右 if not f and (xn)and(map[x+1,y]=0) then move(x+1,y ,step+1); //往下 if not f and (y1)and(map[x,y-1]=0) then move(x,y-1, step+1); //往左 if not f and (x1)and(map[x-1,y]=0) then move(x-1,y, step+1); //往上 end; end; BEGIN readln(n,m); //n行m列的迷宫 for i:=1 to n do //读入迷宫,0表示通,-1表示不通 begin for j:=1 to m do read(map[i,j]); readln; end; write(input the enter:); readln(soux,souy); //入口 write(input the exit:); readln(desx,desy); //出口 f:=false; //f=false表示无解;f=true表示找到了一个解 move(soux,souy,1); if f then for i:=1 to totstep do //输出直迷宫的路径 write(route[i]:4); else writeln (no way.); END. 【广搜参考程序】 program EX8_4_2; const maxn=50; u:array[1..4] of integer=(0,1,0,-1); w:array[1..4] of integer=(1,0,-1,0); var map:array [1..maxn,1..maxn] of integer; f:boolean; n,m,i,j,desx,desy,soux,souy,head,tail,x,y:integer; route:array[1..maxn] of record x,y,pre : integer; end; procedure print(d:integer); begin if route[d].pre0 then print(route[d].pre); write((,route[d].x,,,route[d].y,)); end; BEGIN readln(
您可能关注的文档
- 巴塞罗那分期宣讲培训.ppt
- 巴西社会保障制度培训资料.ppt
- 巴黎迪士尼初期失败分析研讨——从国际.ppt
- 巴黎迪士尼知识讲稿教程文件.pptx
- 市场与政府关系教材课程.ppt
- 市场推广营与销策略.ppt
- 市场经济体制下社会保障制度改革讲解材料.ppt
- 市场营与销 杜陵.ppt
- 市场营与销之产品.ppt
- 市场营与销学第三章jj.ppt
- 2024至2030年中国洁净环境测试仪数据监测研究报告.docx
- 2024年中国不锈钢隔离护栏市场调查研究报告.docx
- 2024年中国中巴车雨刮电机市场调查研究报告.docx
- 2024年中国脚踏黄油机市场调查研究报告.docx
- 2024至2030年中国衬氟止回阀行业投资前景及策略咨询研究报告.docx
- 2024至2030年中国直通式楼宇对讲系统数据监测研究报告.docx
- 2024至2030年迷宫游戏盘杯垫项目投资价值分析报告.docx
- 2024至2030年冷媒压力计项目投资价值分析报告.docx
- 2024年纯氩项目可行性研究报告.docx
- 2024至2030年车头标志项目投资价值分析报告.docx
文档评论(0)