forked from fishercoder1534/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNumberOfIslandsUnionFind.java
66 lines (59 loc) · 1.99 KB
/
NumberOfIslandsUnionFind.java
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
54
55
56
57
58
59
60
61
62
63
64
65
66
package medium;
/**
* Created by fishercoder1534 on 9/30/16.
*/
//Inspired by this post: https://discuss.leetcode.com/topic/39980/1d-union-find-java-solution-easily-generalized-to-other-problems
public class NumberOfIslandsUnionFind {
class UnionFind{
int count;
int m, n;
int[] ids;
public UnionFind(char[][] grid){
m = grid.length;
n = grid[0].length;
ids = new int[m*n];
for(int i = 0; i < m; i++){
for(int j = 0; j < n; j++){
if(grid[i][j] == '1') {
count++;
ids[i*n+j] = i*n+j;
}
}
}
}
public void union(int i, int j){
int x = find(ids, i);
int y = find(ids, j);
if(x != y) {//note: this is when x != y, only in this case, we should union these two nodes, which makes sense naturally.
count--;
ids[x] = y;
}
}
public int find(int[] ids, int i){
if(ids[i] == i) return i;
return find(ids, ids[i]);
}
}
public int numIslands(char[][] grid) {
if(grid == null || grid.length == 0 || grid[0].length == 0) return 0;
int[] dirs = new int[]{0,1,0,-1,0};
UnionFind uf = new UnionFind(grid);
int m = grid.length, n = grid[0].length;
for(int i = 0; i < m; i++){
for(int j = 0; j < n; j++){
if(grid[i][j] == '1'){
for(int k = 0; k < 4; k++){
int x = i+dirs[k];
int y = j+dirs[k+1];
if(x >= 0 && x < m && y >= 0 && y < n && grid[x][y] == '1'){
int id1 = i*n+j;
int id2 = x*n+y;
uf.union(id1, id2);
}
}
}
}
}
return uf.count;
}
}