200.Number-of-Islands
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 all four edges of the grid are all surrounded by water.
Example 1:
Input:
11110
11010
11000
00000
Output: 1代码
Approach #1 DFS
遍历graph寻找陆地“1”,以“1”为中心,使用DFS把四周变成“0”
Complexity Analysis
Time complexity : O(_M×N) where M is the number of rows and _N is the number of columns.
Space complexity : worst case O(_M×N) in case that the grid map is filled with lands where DFS goes by M×_N deep.
Approach #2 BFS
遍历graph寻找陆地“1”,以“1”为中心,使用BFS把四周变成“0”
mplexity Analysis
Time complexity : O(_M×N) where M is the number of rows and _N is the number of columns.
Space complexity : O(_min(M,N)) because in worst case where the grid is filled with lands, the size of queue can grow up to min(M,,_N).
Approach #3 Union Find (aka Disjoint Set) Confusion
Last updated
Was this helpful?