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.java
public class Solution { private int n, m; public int numIslands(char[][] grid) { n = grid.length; if (n == 0) return 0; m = grid[0].length; int num=0; for (int i = 0; i < n; i++){ for (int j = 0; j < m; j++) if (grid[i][j] == '1') { DFS(grid, i, j); ++num; } } return num; } private void DFS(char[][] grid, int i, int j) { if (i < 0 || j < 0 || i >= n || j >= m || grid[i][j] != '1') return; grid[i][j] = '0'; DFS(grid, i + 1, j); DFS(grid, i - 1, j); DFS(grid, i, j + 1); DFS(grid, i, j - 1); } }