LeetCood 200. Number of Islands floodfill算法,回溯算法

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

题意

在一个二维地图上,’1’代表陆地,’0’代表水域,横向和纵向的陆地连接成岛屿,被水域分隔开。给出的地图中有多少岛屿?

思路

  • 思路和79. Word Search差不多,遍历整个图挨个找点,并判断其周围的元素,将所有的点标记起来。
  • 区别就是,岛屿的统计在递归出口,只要入口条件满足,说明就是一个岛之后将这个岛周围的所有陆地连通。
  • 不需要状态回退,当某一岛屿被标记之后,不能二次使用。

代码

class Solution {
private:
    int d[4][2] = {{-1,0},{0,1},{1,0},{0,-1}};
    int m,n;
    vector<vector<bool>> visit;
    int count;
    bool isArea(int x,int y)
    {
        return x >= 0 && x < m && y >= 0 && y < n;   //极限位置[0,m-1]  [0,n-1]
    }

    void findPath(vector<vector<char>> &grid,int startx,int starty)
    {
        visit[startx][starty] = true;
        for(int i = 0;i<4;i++)
        {
            int newx = startx + d[i][0];
            int newy = starty + d[i][1];
            if(isArea(newx,newy) && !visit[newx][newy] &&grid[newx][newy] == '1') //只有当newx和newy合法,未被访问过,且值为'1'才可进入递归
            {
                findPath(grid,newx,newy);
            }
        }
        return;
    }

    //如何返回几条路径信息,是需要什么样的条件
    //解决办法,在回溯函数里不需要统计路线,只需要在入口判断当入库值为1,说明一定有一一块陆地,之后调用floodfill将这块陆地含1的标识起来
public:
    int numIslands(vector<vector<char>>& grid) {
        count =0;
        if(grid.size() == 0)
        {
            return count;
        }
        m = grid.size();
        n = grid[0].size();
        visit = vector<vector<bool>> (m,vector<bool>(n,false));
       // d[4][2] = ;
        for(int i=0;i<m;i++)
        {
            for(int j=0;j<n;j++)
            {
                if(grid[i][j] == '1' && !visit[i][j])
                {
                    findPath(grid,i,j);
                    count++;
                }
                //count += findPath(grid,i,j);
            }
        }        
        return count;
    }
};

这里写图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值