200. Number of Islands

2017-01-09  本文已影响0人  juexin

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.
Example 1:

11110
11010
11000
00000

Answer: 1
Example 2:

11000
11000
00100
00011

Answer: 3

public class Solution {
    public int numIslands(char[][] grid) {
        int m = grid.length;
        
        if(m == 0)
          return 0;
        int n = grid[0].length;
        int count = 0;
        boolean[][] visit = new boolean[m][n];
        for(int i=0;i<m;i++)
          for(int j=0;j<n;j++)
          {
              if(grid[i][j] == '1'&&!visit[i][j])
              {
                  DFS(i,j,m,n,grid,visit);
                  count++;
              }
          }
        return count;
    }
    private void DFS(int i,int j,int m,int n,char[][] grid,boolean[][] visit)
    {
        if(i<0||j<0||i >= m||j >= n||grid[i][j] == '0'||visit[i][j])
          return;
        visit[i][j] = true;
        DFS(i+1,j,m,n,grid,visit);
        DFS(i-1,j,m,n,grid,visit);
        DFS(i,j+1,m,n,grid,visit);
        DFS(i,j-1,m,n,grid,visit);
        
    }
}
上一篇下一篇

猜你喜欢

热点阅读