clllll  

2024年12月18日

摘要: class Solution { public int maxDistance(int[][] grid) { // 思路:宽度优先遍历。 // 第一层有一个或者多个。单源+多源。 // 遍历到每一层的时候,看当前层有多少个数,然后就操作多少次。 int m = grid.length; int n 阅读全文
posted @ 2024-12-18 19:12 llcl 阅读(3) 评论(0) 推荐(0) 编辑