200. Number of Islands

Posted 为了更优秀的你,加油!

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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

Credits:
Special thanks to @mithmatt for adding this problem and creating all test cases.

解题思路:用了暴力搜索,不过复杂度也是O(n)的

class Solution {
public:
    void dfs(int x,int y,int n,int m,vector<vector<char>>& grid){
        if(x<0||x>=n||y<0||y>=m||vis[x][y]||grid[x][y]==0)return;
        vis[x][y]=1;
        dfs(x+1,y,n,m,grid);dfs(x,y+1,n,m,grid);dfs(x,y-1,n,m,grid);dfs(x-1,y,n,m,grid);
    }
    int numIslands(vector<vector<char>>& grid) {
        if(grid.empty())return 0;
        int ans=0;
        int n=grid.size(),m=grid[0].size();
        vis.resize(n+1);
        for(int i=0;i<n;i++)
            vis[i].resize(m+1);
        for(int i=0;i<n;i++){
            for(int j=0;j<m;j++){
                if((!vis[i][j])&&grid[i][j]==1){
                    dfs(i,j,n,m,grid);
                    ans++;
                }
            }
        }
        return ans;
    }
private:
    vector<vector<int>>vis;
};

 

以上是关于200. Number of Islands的主要内容,如果未能解决你的问题,请参考以下文章

200. Number of Islands

200. Number of Islands

200. Number of Islands

200. Number of Islands

200. Number of Islands

200. Number of Islands