200.岛屿的个数
题目
给定一个由 ‘1’(陆地)和 ‘0’(水)组成的的二维网格,计算岛屿的数量。一个岛被水包围,并且它是通过水平方向或垂直方向上相邻的陆地连接而成的。你可以假设网格的四个边均被水包围。1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18示例 1:
输入:
11110
11010
11000
00000
输出: 1
示例 2:
输入:
11000
11000
00100
00011
输出: 3
方法
方法1:深度优先搜索
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.
1 | class Solution(object): |
1 | class Solution(object): |
方法2:广度优先搜索
1 | class Solution(object): |
1 | class Solution(object): |