Skip to content

Commit be87778

Browse files
Merge pull request #2805 from rmrt1n/200
Create 0200-number-of-islands.rs
2 parents 16502d5 + 48d3aad commit be87778

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed

rust/0200-number-of-islands.rs

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
impl Solution {
2+
pub fn num_islands(grid: Vec<Vec<char>>) -> i32 {
3+
fn dfs(grid: &mut Vec<Vec<char>>, x: i32, y: i32) {
4+
if x < 0
5+
|| y < 0
6+
|| x >= grid.len() as i32
7+
|| y >= grid[0].len() as i32
8+
|| grid[x as usize][y as usize] == '0'
9+
{
10+
return;
11+
}
12+
13+
grid[x as usize][y as usize] = '0';
14+
15+
let directions: [(i32, i32); 4] = [(0, 1), (1, 0), (0, -1), (-1, 0)];
16+
17+
for (add_x, add_y) in directions {
18+
dfs(grid, x + add_x, y + add_y);
19+
}
20+
}
21+
22+
let mut count = 0;
23+
let mut new_grid = grid.clone();
24+
25+
for x in 0..grid.len() {
26+
for y in 0..grid[0].len() {
27+
if new_grid[x][y] == '1' {
28+
count += 1;
29+
dfs(&mut new_grid, x as i32, y as i32);
30+
}
31+
}
32+
}
33+
34+
count
35+
}
36+
}

0 commit comments

Comments
 (0)