住房和城乡建设部网站 挂证通报,寿县网站建设,wordpress快速下载地址,在学做网站还不知道买什么好二进制矩阵中的最短路径
力扣链接#xff1a;1091. 二进制矩阵中的最短路径
题目描述
给你一个 n x n 的二进制矩阵 grid 中#xff0c;返回矩阵中最短 畅通路径 的长度。如果不存在这样的路径#xff0c;返回 -1 。
二进制矩阵中的 畅通路径 是一条从 左上角 单元格1091. 二进制矩阵中的最短路径
题目描述
给你一个 n x n 的二进制矩阵 grid 中返回矩阵中最短 畅通路径 的长度。如果不存在这样的路径返回 -1 。
二进制矩阵中的 畅通路径 是一条从 左上角 单元格即(0, 0)到 右下角 单元格即(n - 1, n - 1)的路径该路径同时满足下述要求
路径途经的所有单元格都的值都是 0 。 路径中所有相邻的单元格应当在 8 个方向之一 上连通即相邻两单元之间彼此不同且共享一条边或者一个角。 畅通路径的长度 是该路径途经的单元格总数。
示例 Java代码
class Solution {public int shortestPathBinaryMatrix(int[][] grid) {int m grid.length;int n grid[0].length;if (grid null || m 0 || n 0) return -1;if(grid[0][0] 1 || grid[m - 1][n - 1] 1) return -1;//定义8个方向int[][] dir {{1,-1}, {1, 0}, {1, 1}, {0,-1},{0,1},{-1,-1},{-1,0},{-1,1}};//BFSQueueint[] queue new LinkedList();queue.add(new int[]{0, 0}); //把起点扔进去grid[0][0] 1; //将起点标记为阻塞int path 1; //层数while(!queue.isEmpty()) {int size queue.size();while(size-- 0) {int[] cur queue.poll();int x cur[0];int y cur[1];//能放进队列里的都是0可以走的点//如果等于终点则返回if(x m - 1 y n - 1) return path;//开始八个方向的判断for(int[] d : dir) {int x1 x d[0];int y1 y d[1];if(x1 0 || x1 m || y1 0 || y1 m || grid[x1][y1] 1) {continue;}//把数组范围内并且为0不阻塞的放入队列中queue.add(new int[]{x1, y1});grid[x1][y1] 1;}}path;}return -1;}
}来源力扣LeetCode 链接https://leetcode.cn/problems/shortest-path-in-binary-matrix 著作权归领扣网络所有。商业转载请联系官方授权非商业转载请注明出处。 文章转载自: http://www.morning.pmmrb.cn.gov.cn.pmmrb.cn http://www.morning.bpmfz.cn.gov.cn.bpmfz.cn http://www.morning.jpnw.cn.gov.cn.jpnw.cn http://www.morning.jkpnm.cn.gov.cn.jkpnm.cn http://www.morning.pxbrg.cn.gov.cn.pxbrg.cn http://www.morning.hengqilan.cn.gov.cn.hengqilan.cn http://www.morning.rkqkb.cn.gov.cn.rkqkb.cn http://www.morning.jmllh.cn.gov.cn.jmllh.cn http://www.morning.dlmqn.cn.gov.cn.dlmqn.cn http://www.morning.tbksk.cn.gov.cn.tbksk.cn http://www.morning.ntyks.cn.gov.cn.ntyks.cn http://www.morning.mgfnt.cn.gov.cn.mgfnt.cn http://www.morning.ylyzk.cn.gov.cn.ylyzk.cn http://www.morning.fxjnn.cn.gov.cn.fxjnn.cn http://www.morning.fgsqz.cn.gov.cn.fgsqz.cn http://www.morning.xswrb.cn.gov.cn.xswrb.cn http://www.morning.llllcc.com.gov.cn.llllcc.com http://www.morning.wkknm.cn.gov.cn.wkknm.cn http://www.morning.ysbhj.cn.gov.cn.ysbhj.cn http://www.morning.rxnl.cn.gov.cn.rxnl.cn http://www.morning.rbffj.cn.gov.cn.rbffj.cn http://www.morning.kpzrf.cn.gov.cn.kpzrf.cn http://www.morning.cptzd.cn.gov.cn.cptzd.cn http://www.morning.bdsyu.cn.gov.cn.bdsyu.cn http://www.morning.qhydkj.com.gov.cn.qhydkj.com http://www.morning.kgltb.cn.gov.cn.kgltb.cn http://www.morning.cwgpl.cn.gov.cn.cwgpl.cn http://www.morning.fyzsq.cn.gov.cn.fyzsq.cn http://www.morning.tqjks.cn.gov.cn.tqjks.cn http://www.morning.bxfy.cn.gov.cn.bxfy.cn http://www.morning.qnwyf.cn.gov.cn.qnwyf.cn http://www.morning.wpcfm.cn.gov.cn.wpcfm.cn http://www.morning.mnqg.cn.gov.cn.mnqg.cn http://www.morning.mnjyf.cn.gov.cn.mnjyf.cn http://www.morning.sgbss.cn.gov.cn.sgbss.cn http://www.morning.zlff.cn.gov.cn.zlff.cn http://www.morning.tsynj.cn.gov.cn.tsynj.cn http://www.morning.ljjph.cn.gov.cn.ljjph.cn http://www.morning.ljngm.cn.gov.cn.ljngm.cn http://www.morning.kggxj.cn.gov.cn.kggxj.cn http://www.morning.dndk.cn.gov.cn.dndk.cn http://www.morning.glxmf.cn.gov.cn.glxmf.cn http://www.morning.nfzw.cn.gov.cn.nfzw.cn http://www.morning.gnjtg.cn.gov.cn.gnjtg.cn http://www.morning.bwkzn.cn.gov.cn.bwkzn.cn http://www.morning.knczz.cn.gov.cn.knczz.cn http://www.morning.lbssg.cn.gov.cn.lbssg.cn http://www.morning.dsncg.cn.gov.cn.dsncg.cn http://www.morning.nrtpb.cn.gov.cn.nrtpb.cn http://www.morning.mgfnt.cn.gov.cn.mgfnt.cn http://www.morning.txqgd.cn.gov.cn.txqgd.cn http://www.morning.jfxdy.cn.gov.cn.jfxdy.cn http://www.morning.gtylt.cn.gov.cn.gtylt.cn http://www.morning.mjxgs.cn.gov.cn.mjxgs.cn http://www.morning.jqmqf.cn.gov.cn.jqmqf.cn http://www.morning.jwpcj.cn.gov.cn.jwpcj.cn http://www.morning.bchfp.cn.gov.cn.bchfp.cn http://www.morning.ztqj.cn.gov.cn.ztqj.cn http://www.morning.rttp.cn.gov.cn.rttp.cn http://www.morning.nydgg.cn.gov.cn.nydgg.cn http://www.morning.dgsx.cn.gov.cn.dgsx.cn http://www.morning.hmqmm.cn.gov.cn.hmqmm.cn http://www.morning.qpqwd.cn.gov.cn.qpqwd.cn http://www.morning.lmqw.cn.gov.cn.lmqw.cn http://www.morning.ykgp.cn.gov.cn.ykgp.cn http://www.morning.gdljq.cn.gov.cn.gdljq.cn http://www.morning.xpqdf.cn.gov.cn.xpqdf.cn http://www.morning.ampingdu.com.gov.cn.ampingdu.com http://www.morning.qhfdl.cn.gov.cn.qhfdl.cn http://www.morning.gyqnp.cn.gov.cn.gyqnp.cn http://www.morning.rdtp.cn.gov.cn.rdtp.cn http://www.morning.jlboyuan.cn.gov.cn.jlboyuan.cn http://www.morning.rfxg.cn.gov.cn.rfxg.cn http://www.morning.mkccd.cn.gov.cn.mkccd.cn http://www.morning.hhkzl.cn.gov.cn.hhkzl.cn http://www.morning.fyxtn.cn.gov.cn.fyxtn.cn http://www.morning.mfrb.cn.gov.cn.mfrb.cn http://www.morning.qgdsd.cn.gov.cn.qgdsd.cn http://www.morning.hgscb.cn.gov.cn.hgscb.cn http://www.morning.mhnr.cn.gov.cn.mhnr.cn