200. Number of Islands - Medium

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:

Input:
11110
11010
11000
00000

Output: 1

Example 2:

Input:
11000
11000
00100
00011

Output: 3

dfs+visited数组。遍历数组中每一个元素,如果为1且没有visited,调用dfs对其上下左右进行dfs。

dfs的返回条件是不为1或者已经visited,或者下标越界

注意corner case(如,输入为空数组)

时间:O(M*N),空间:worst case O(M*N) (if matrix is filled with islands ‘1‘ where dfs goes M*N deep)

class Solution {
    boolean[][] visited;

    public int numIslands(char[][] grid) {
        if(grid == null || grid.length == 0) return 0;

        int m = grid.length, n = grid[0].length, res = 0;
        visited = new boolean[m][n];
        for(int i = 0; i < m; i++) {
            for(int j = 0; j < n; j++) {
                if(grid[i][j] == ‘1‘ && visited[i][j] == false) {
                    res++;
                    dfs(grid, i, j, visited);
                }
            }
        }
        return res;
    }

    public void dfs(char[][] grid, int row, int col, boolean[][] visited) {
        if(row < 0 || row > grid.length - 1 || col < 0 || col > grid[0].length - 1)
            return;
        if(grid[row][col] == ‘0‘ || visited[row][col] == true)
            return;
        visited[row][col] = true;

        dfs(grid, row+1, col, visited);
        dfs(grid, row-1, col, visited);
        dfs(grid, row, col+1, visited);
        dfs(grid, row, col-1, visited);
    }
}

原文地址:https://www.cnblogs.com/fatttcat/p/10039911.html

时间: 2024-11-04 05:26:53

200. Number of Islands - Medium的相关文章

&lt;LeetCode OJ&gt; 200. Number of Islands

Total Accepted: 48411 Total Submissions: 171609 Difficulty: Medium 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 verticall

200. Number of Islands

https://leetcode.com/problems/number-of-islands/#/description 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. Yo

Leetcode 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

[LeetCode] 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

【LeetCode】200. Number of Islands (2 solutions)

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

[leedcode 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

leetcode 200. Number of Islands(DFS)

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

200. Number of Islands java solutions

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

[email&#160;protected] [200] Number of Islands

https://leetcode.com/problems/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