-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathNumIslands.kt
90 lines (73 loc) · 2.18 KB
/
NumIslands.kt
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
package com.daily.algothrim.leetcode.top150
/**
* 200. 岛屿数量
*/
/*
给你一个由 '1'(陆地)和 '0'(水)组成的的二维网格,请你计算网格中岛屿的数量。
岛屿总是被水包围,并且每座岛屿只能由水平方向和/或竖直方向上相邻的陆地连接形成。
此外,你可以假设该网格的四条边均被水包围。
示例 1:
输入:grid = [
["1","1","1","1","0"],
["1","1","0","1","0"],
["1","1","0","0","0"],
["0","0","0","0","0"]
]
输出:1
示例 2:
输入:grid = [
["1","1","0","0","0"],
["1","1","0","0","0"],
["0","0","1","0","0"],
["0","0","0","1","1"]
]
输出:3
提示:
m == grid.length
n == grid[i].length
1 <= m, n <= 300
grid[i][j] 的值为 '0' 或 '1'
*/
class NumIslands {
companion object {
@JvmStatic
fun main(args: Array<String>) {
println(
NumIslands().numIslands(
arrayOf(
charArrayOf('1', '1', '1', '1', '0'),
charArrayOf('1', '1', '0', '1', '0'),
charArrayOf('1', '1', '0', '0', '0'),
charArrayOf('0', '0', '0', '0', '0')
)
)
)
}
}
/**
* O(mn)
* O(mn)
*/
fun numIslands(grid: Array<CharArray>): Int {
val rowCount = grid.size
val columnCount = grid[0].size
var count = 0
for (i in 0 until rowCount) {
for (j in 0 until columnCount) {
if (grid[i][j] == '1') {
count++
dfs(grid, i, rowCount, j, columnCount)
}
}
}
return count
}
private fun dfs(grid: Array<CharArray>, row: Int, rowCount: Int, column: Int, columnCount: Int) {
if (row < 0 || row >= rowCount || column < 0 || column >= columnCount || grid[row][column] == '0') return
grid[row][column] = '0'
dfs(grid, row - 1, rowCount, column, columnCount)
dfs(grid, row + 1, rowCount, column, columnCount)
dfs(grid, row, rowCount, column - 1, columnCount)
dfs(grid, row, rowCount, column + 1, columnCount)
}
}