200、岛屿数量

给你一个由 ‘1’(陆地)和 ‘0’(水)组成的的二维网格,请你计算网格中岛屿的数量。

岛屿总是被水包围,并且每座岛屿只能由水平方向和/或竖直方向上相邻的陆地连接形成。

此外,你可以假设该网格的四条边均被水包围。

来源:力扣(LeetCode)
题目链接:https://leetcode-cn.com/problems/number-of-islands
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

解题方法一:递归

class Solution { 
public: 
    int numIslands(vector<vector<char>>& grid) {
        int ans = 0;
        for(int i = 0; i < grid.size(); ++i){
            for(int j = 0; j < grid[0].size(); ++j){
                if(grid[i][j] == '1'){
                    dfs(grid, i, j);
                    ++ans;
                }
            }
        }
        return ans;
    }
    void dfs(vector<vector<char>>& grid, int x, int y){
        if(x >=0 && x < grid.size() && y >=0 && y < grid[0].size() && grid[x][y] == '1'){
            grid[x][y] = '0';
        }
        else return;
        dfs(grid, x - 1, y);
        dfs(grid, x + 1, y);
        dfs(grid, x, y - 1);
        dfs(grid, x, y + 1);
    }
};

解题方法二:迭代

class Solution {   
public:
    int numIslands(vector<vector<char>>& grid) {
        queue<pair<int, int>> near;
        int ans = 0;
        int row = grid.size();
        int col = grid[0].size();
        for(int i = 0; i < row; ++i){
            for(int j = 0; j < col; ++j){
                if(grid[i][j] == '1'){
                    ++ans;
                    grid[i][j] = '0';
                    near.push({i, j});
                    while(!near.empty()){
                        int x = near.front().first;
                        int y = near.front().second;
                        near.pop();
                        if(x - 1 >= 0 && grid[x - 1][y] == '1'){
                            grid[x - 1][y] = '0';
                            near.push({x - 1, y});
                        }
                        if(x + 1 < row && grid[x + 1][y] == '1'){
                            grid[x + 1][y] = '0';
                            near.push({x + 1, y});
                        }
                        if(y - 1 >= 0 && grid[x][y - 1] == '1'){
                            grid[x][y - 1] = '0';
                            near.push({x, y - 1});
                        }
                        if(y + 1 < col && grid[x][y + 1] == '1'){
                            grid[x][y + 1] = '0';
                            near.push({x, y + 1});
                        }
                    }
                }
            }
        }
        return ans;
    }
};
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值