【重点】【BFS】542.01矩阵
2024-01-08 09:29:26
法1:经典BFS
下图中就展示了我们方法:
class Solution {
public int[][] updateMatrix(int[][] mat) {
int m = mat.length, n = mat[0].length;
int[][] dist = new int[m][n];
boolean[][] used = new boolean[m][n];
Queue<int[]> queue = new LinkedList<>();
for (int i = 0; i < m; ++i) {
for (int j = 0; j < n; ++j) {
if (mat[i][j] == 0) {
queue.offer(new int[]{i, j});
used[i][j] = true;
}
}
}
int[] xMove = new int[]{-1, 1, 0, 0};
int[] yMove = new int[]{0, 0, -1, 1};
while (!queue.isEmpty()) {
int[] curLoc = queue.poll();
int curX = curLoc[0], curY = curLoc[1];
for (int i = 0; i < 4; ++i) {
int xNew = curX + xMove[i];
int yNew = curY + yMove[i];
if (xNew >= 0 && xNew < m && yNew >= 0 && yNew < n && !used[xNew][yNew]) {
queue.offer(new int[]{xNew, yNew});
dist[xNew][yNew] = dist[curX][curY] + 1;
used[xNew][yNew] = true;
}
}
}
return dist;
}
}
文章来源:https://blog.csdn.net/Allenlzcoder/article/details/135398752
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。 如若内容造成侵权/违法违规/事实不符,请联系我的编程经验分享网邮箱:veading@qq.com进行投诉反馈,一经查实,立即删除!
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。 如若内容造成侵权/违法违规/事实不符,请联系我的编程经验分享网邮箱:veading@qq.com进行投诉反馈,一经查实,立即删除!