200. Number of Islands
Posted 蜃利的阴影下
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了200. Number of Islands相关的知识,希望对你有一定的参考价值。
Given a 2d grid map of ‘1‘
s (land) and ‘0‘
s (water), count the number of islands. An island is surrounded by water and is formed by connecting adjacent lands horizontally or vertically. You may assume all four edges of the grid are all surrounded by water.
public class Solution { int R = -1; int C = -1; public int numIslands(char[][] grid) { R = grid.length; if(R == 0) return 0; C = grid[0].length; int count = 0; for(int r = 0; r<R; ++r) { for(int c = 0; c<C; ++c) { if(grid[r][c] == ‘1‘) { ++count; } changeIslandsToWater(grid, r, c); } } return count; } private void changeIslandsToWater(char[][] grid, int r, int c) { if(r>=R || c >=C || r<0 || c<0) return; if(grid[r][c] == ‘0‘) return; grid[r][c] = ‘0‘; changeIslandsToWater(grid, r, c+1); //go right changeIslandsToWater(grid, r+1, c); //go down changeIslandsToWater(grid, r, c-1); //go left changeIslandsToWater(grid, r-1, c); //go up } }
以上是关于200. Number of Islands的主要内容,如果未能解决你的问题,请参考以下文章