-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNumberOfIslands.cs
47 lines (39 loc) · 1.11 KB
/
NumberOfIslands.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
namespace AlgorithmsAndDS.Graphs.Medium;
// 200. Number of Islands
public class NumberOfIslands
{
// Time complexity: O(n*m); Space complexity: O(n*m).
public int NumIslands(char[][] grid)
{
var rows = grid.Length;
var cols = grid[0].Length;
void Dfs(int row, int col, bool[,] visited)
{
if (row < 0 || row >= rows ||
col < 0 || col >= cols ||
grid[row][col] == '0' ||
visited[row, col])
{
return;
}
visited[row, col] = true;
Dfs(row + 1, col, visited);
Dfs(row - 1, col, visited);
Dfs(row, col + 1, visited);
Dfs(row, col - 1, visited);
}
var visited = new bool[rows, cols];
var result = 0;
for (var i = 0; i < rows; i++)
{
for (var j = 0; j < cols; j++)
{
if (grid[i][j] == '0' || visited[i, j])
continue;
Dfs(i, j, visited);
result++;
}
}
return result;
}
}