首页 > 代码库 > 200. Number of Islands
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. 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
Sol:
class Solution(object): def numIslands(self, grid): """ :type grid: List[List[str]] :rtype: int """ # DFS # Iterate through each of the cell and if it is an island, do dfs to mark all adjacent islands, then increase the counter by 1. if not grid: return 0 res = 0 for i in range(len(grid)): for j in range(len(grid[0])): if grid[i][j] == ‘1‘: res += 1 self.dfs(grid, i, j) return res def dfs(self, grid, i, j): if i < 0 or j < 0 or i >= len(grid) or j >= len(grid[0]) or grid[i][j] != ‘1‘: return grid[i][j] = ‘#‘ self.dfs(grid, i+1, j) self.dfs(grid, i-1, j) self.dfs(grid, i, j+1) self.dfs(grid, i, j-1)
Note:
1 Matrix grid is represented by array list, then use grid[i][j] to represent each element.
200. Number of Islands
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。