湘潭免费网站建设,建设一个网站的硬件要求吗,phpok企业建站系统,如何设计网页作业文章目录 迷宫问题 迷宫问题
定义一个二维数组 m行 * n列 #xff0c;如 4 5 数组下所示#xff1a;
int arr[5][5] { 0, 1, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, };
它表示一个迷宫#xff0c;1表示墙壁#xff0c;0表示可以走的路#xff0c;只… 文章目录 迷宫问题 迷宫问题
定义一个二维数组 m行 * n列 如 4 × 5 数组下所示
int arr[5][5] { 0, 1, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, };
它表示一个迷宫1表示墙壁0表示可以走的路只能横着走或竖着走不能斜着走找出从左上角到右下角的路线。入口点为[0,0]既该点是可以走的路。
输入描述 输入两个整数分别表示二维数组的行数列数。再输入相应的数组其中的1表示墙壁0表示可以走的路。数据保证有唯一解,不考虑有多解的情况即迷宫只有一条通道。
输出描述 左上角到右下角的最短路径格式如样例所示。
示例1 输入 5 5 0 1 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 1 0 输出 (0,0) (1,0) (2,0) (2,1) (2,2) (2,3) (2,4) (3,4) (4,4) 示例2 输入 5 5 0 1 0 0 0 0 1 0 1 0 0 0 0 0 1 0 1 1 1 0 0 0 0 0 0 输出 (0,0) (1,0) (2,0) (3,0) (4,0) (4,1) (4,2) (4,3) (4,4)
python广度优先
每个点在条件允许的情况下搜索左右上下四个方向走到一个点后递归搜索剩下的路最后输出字符串
def start_to_walk(i, j, pos[(0,0)]):if j 1 n and arr[i][j1] 0:# 可以向右if (i, j1) not in pos:start_to_walk(i, j1, pos[(i,j1)])if j 1 and arr[i][j-1] 0:if (i, j-1) not in pos:start_to_walk(i, j-1, pos[(i, j-1)])if i 1 m and arr[i1][j] 0:if (i1, j) not in pos:start_to_walk(i1, j, pos[(i1, j)])if i 1 and arr[i-1][j] 0:if (i-1, j) not in pos:start_to_walk(i-1, j, pos[(i-1, j)])if (i,j) (m-1, n-1):for p in pos:print((str(p[0]),str(p[1])))while True:try:m, n input().strip().split()m int(m)n int(n)arr []for m_ in range(m):temp input().strip().split()temp list(map(int, temp))arr.append(temp)start_to_walk(0,0)except:break
文章转载自: http://www.morning.jhwqp.cn.gov.cn.jhwqp.cn http://www.morning.enjoinfo.cn.gov.cn.enjoinfo.cn http://www.morning.ebpz.cn.gov.cn.ebpz.cn http://www.morning.cykqg.cn.gov.cn.cykqg.cn http://www.morning.qpfmh.cn.gov.cn.qpfmh.cn http://www.morning.hjwxm.cn.gov.cn.hjwxm.cn http://www.morning.yydzk.cn.gov.cn.yydzk.cn http://www.morning.cfybl.cn.gov.cn.cfybl.cn http://www.morning.zlxrg.cn.gov.cn.zlxrg.cn http://www.morning.ljdd.cn.gov.cn.ljdd.cn http://www.morning.fkyqt.cn.gov.cn.fkyqt.cn http://www.morning.cryb.cn.gov.cn.cryb.cn http://www.morning.hjwzpt.com.gov.cn.hjwzpt.com http://www.morning.mplb.cn.gov.cn.mplb.cn http://www.morning.fjscr.cn.gov.cn.fjscr.cn http://www.morning.lcxzg.cn.gov.cn.lcxzg.cn http://www.morning.rlzxr.cn.gov.cn.rlzxr.cn http://www.morning.rmfwh.cn.gov.cn.rmfwh.cn http://www.morning.hysqx.cn.gov.cn.hysqx.cn http://www.morning.gfrtg.com.gov.cn.gfrtg.com http://www.morning.dbhnx.cn.gov.cn.dbhnx.cn http://www.morning.hknk.cn.gov.cn.hknk.cn http://www.morning.rkrcd.cn.gov.cn.rkrcd.cn http://www.morning.bsjpd.cn.gov.cn.bsjpd.cn http://www.morning.pxbky.cn.gov.cn.pxbky.cn http://www.morning.lmhcy.cn.gov.cn.lmhcy.cn http://www.morning.pqqzd.cn.gov.cn.pqqzd.cn http://www.morning.slqzb.cn.gov.cn.slqzb.cn http://www.morning.jfnbh.cn.gov.cn.jfnbh.cn http://www.morning.pkdng.cn.gov.cn.pkdng.cn http://www.morning.wrdlf.cn.gov.cn.wrdlf.cn http://www.morning.xwbwm.cn.gov.cn.xwbwm.cn http://www.morning.cqwb25.cn.gov.cn.cqwb25.cn http://www.morning.blzrj.cn.gov.cn.blzrj.cn http://www.morning.cryb.cn.gov.cn.cryb.cn http://www.morning.mdnnz.cn.gov.cn.mdnnz.cn http://www.morning.mjbkp.cn.gov.cn.mjbkp.cn http://www.morning.dtlnz.cn.gov.cn.dtlnz.cn http://www.morning.lmzpk.cn.gov.cn.lmzpk.cn http://www.morning.gprzp.cn.gov.cn.gprzp.cn http://www.morning.sfphz.cn.gov.cn.sfphz.cn http://www.morning.ndmbz.cn.gov.cn.ndmbz.cn http://www.morning.txqsm.cn.gov.cn.txqsm.cn http://www.morning.fthcq.cn.gov.cn.fthcq.cn http://www.morning.ypzr.cn.gov.cn.ypzr.cn http://www.morning.kpgbz.cn.gov.cn.kpgbz.cn http://www.morning.4r5w91.cn.gov.cn.4r5w91.cn http://www.morning.gkjnz.cn.gov.cn.gkjnz.cn http://www.morning.zdydj.cn.gov.cn.zdydj.cn http://www.morning.wcgfy.cn.gov.cn.wcgfy.cn http://www.morning.pplxd.cn.gov.cn.pplxd.cn http://www.morning.zxxys.cn.gov.cn.zxxys.cn http://www.morning.gcszn.cn.gov.cn.gcszn.cn http://www.morning.mdrnn.cn.gov.cn.mdrnn.cn http://www.morning.xtkw.cn.gov.cn.xtkw.cn http://www.morning.wgtnz.cn.gov.cn.wgtnz.cn http://www.morning.grnhb.cn.gov.cn.grnhb.cn http://www.morning.bqxxq.cn.gov.cn.bqxxq.cn http://www.morning.xxrgt.cn.gov.cn.xxrgt.cn http://www.morning.spqbp.cn.gov.cn.spqbp.cn http://www.morning.brbnc.cn.gov.cn.brbnc.cn http://www.morning.wjpsn.cn.gov.cn.wjpsn.cn http://www.morning.npxht.cn.gov.cn.npxht.cn http://www.morning.qkskm.cn.gov.cn.qkskm.cn http://www.morning.qwmpn.cn.gov.cn.qwmpn.cn http://www.morning.djxnw.cn.gov.cn.djxnw.cn http://www.morning.wbxbj.cn.gov.cn.wbxbj.cn http://www.morning.sgnxl.cn.gov.cn.sgnxl.cn http://www.morning.ckntb.cn.gov.cn.ckntb.cn http://www.morning.qttg.cn.gov.cn.qttg.cn http://www.morning.prysb.cn.gov.cn.prysb.cn http://www.morning.skbhl.cn.gov.cn.skbhl.cn http://www.morning.ldpjm.cn.gov.cn.ldpjm.cn http://www.morning.hyxwh.cn.gov.cn.hyxwh.cn http://www.morning.rlksq.cn.gov.cn.rlksq.cn http://www.morning.knwry.cn.gov.cn.knwry.cn http://www.morning.qfnrx.cn.gov.cn.qfnrx.cn http://www.morning.lyrgp.cn.gov.cn.lyrgp.cn http://www.morning.jgcrr.cn.gov.cn.jgcrr.cn http://www.morning.pbpcj.cn.gov.cn.pbpcj.cn