摘要: class Solution { public int numIslands(char[][] grid) { //统计岛屿的数量 int count = 0; for(int i = 0;i < grid.length;i++){ for(int j = 0;j < grid[0].length; 阅读全文
posted @ 2020-11-03 00:31 peanut_zh 阅读(74) 评论(0) 推荐(0) 编辑