-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path200. Number of Islands DFS.cpp
40 lines (36 loc) · 1.04 KB
/
200. Number of Islands DFS.cpp
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
/*
Problem Link: https://leetcode.com/problems/number-of-islands/
Time: 43 ms (Beats 75.48%), Space: 12.2 MB (Beats 86.86%)
*/
class Solution {
private:
void dfs(int row, int col, vector<vector<char>>& grid){
int n= grid.size();
int m= grid[0].size();
grid[row][col]= '0'; // mark the value to avoid duplicate
int dr[]={-1,0,1,0};
int dc[]={0,1,0,-1};
for (int i=0; i<4; i++) {
int nrow = row + dr[i];
int ncol = col + dc[i];
if (nrow>=0 && nrow<n && ncol>=0 && ncol<m && grid[nrow][ncol]=='1'){
dfs(nrow, ncol, grid);
}
}
}
public:
int numIslands(vector<vector<char>>& grid) {
int n= grid.size();
int m= grid[0].size();
int cnt= 0;
for (int i=0; i<n; i++) {
for (int j=0; j<m; j++) {
if (grid[i][j] == '1') {
cnt++;
dfs(i, j, grid);
}
}
}
return cnt;;
}
};