求岛屿个数

152 阅读1分钟

求岛屿个数

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

python版代码:

class Solution:
    def numIslands(self, grid: List[List[str]]) -> int:
        def find( i,j):
            if grid[i][j] == '1':
                grid[i][j] = '0'
                if i > 0: find(i - 1, j)
                if i < len(grid) - 1: find(i + 1, j)
                if j > 0: find(i, j - 1)
                if j < len(grid[0]) - 1: find(i, j + 1)

        count = 0
        if len(grid) == 0: return 0
        for i in range(len(grid)):
            for j in range(len(grid[i])):
                if grid[i][j] == '1':
                    count += 1
                    find(i, j)
        return count
运算耗时: