标签:
‘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 } }
标签:
原文地址:http://www.cnblogs.com/neweracoding/p/5569646.html