美文网首页
200. Number of Islands

200. Number of Islands

作者: juexin | 来源:发表于2017-01-09 19:32 被阅读0次

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);
        
    }
}

相关文章

网友评论

      本文标题:200. Number of Islands

      本文链接:https://www.haomeiwen.com/subject/jcmhbttx.html