代码拉取完成,页面将自动刷新
package com.fishercoder.solutions;
/**
* 200. 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:
11110
11010
11000
00000
Answer: 1
Example 2:
11000
11000
00100
00011
Answer: 3
*/
public class _200 {
public static class Solution1 {
public int numIslands(char[][] grid) {
if (grid == null || grid.length == 0) {
return 0;
}
int count = 0;
int m = grid.length;
int n = grid[0].length;
for (int i = 0; i < m; i++) {
for (int j = 0; j < n; j++) {
if (grid[i][j] == '1') {
count++;
dfs(grid, i, j, m, n);
}
}
}
return count;
}
void dfs(char[][] grid, int i, int j, int m, int n) {
if (i < 0 || i >= m || j < 0 || j >= n || grid[i][j] == '0') {
return;
}
grid[i][j] = '0';
dfs(grid, i + 1, j, m, n);
dfs(grid, i, j + 1, m, n);
dfs(grid, i - 1, j, m, n);
dfs(grid, i, j - 1, m, n);
}
}
public static class Solution2 {
class UnionFind {
int count;
int m;
int 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;//ids[y] = x; //also works
}
}
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;
int 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;
}
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。