-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFind Number Of Islands
53 lines (47 loc) · 971 Bytes
/
Find Number Of Islands
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
48
49
50
51
52
53
#include<bits/stdc++.h>
bool check(int r, int c, int n, int m)
{
return r>=0 && c>=0 && r<n && c<m;
}
void bfs(int x, int y, int** arr, int n, int m, vector<vector<int>>&vis)
{
queue<pair<int,int>>q;
q.push({x,y});
vis[x][y]=1;
while(!q.empty())
{
int row=q.front().first;
int col=q.front().second;
q.pop();
for(int i=-1;i<=1;i++)
{
for(int j=-1;j<=1;j++)
{
int r=row+i;
int c=col+j;
if(check(r,c,n,m) && !vis[r][c] && arr[r][c]==1)
{
vis[r][c]=1;
q.push({r,c});
}
}
}
}
}
int getTotalIslands(int** arr, int n, int m)
{
int cnt=0;
vector<vector<int>>vis(n, vector<int>(m,0));
for(int i=0;i<n;i++)
{
for(int j=0;j<m;j++)
{
if(arr[i][j]==1 && !vis[i][j])
{
cnt++;
bfs(i,j,arr,n,m,vis);
}
}
}
return cnt;
}