深度搜索---------Lake counting

Posted joe2019

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了深度搜索---------Lake counting相关的知识,希望对你有一定的参考价值。

#include<iostream>
#include<cstdio>
#include<cstdlib>
#define maxn 100
char ch[maxn][maxn];
using namespace std;
int length,width;
void dfs(int x,int y)
{
    ch[x][y]=‘.‘;//记得变.,目的是使连在一块的W也变成.,只用一次dfs
    for(int dx=-1;dx<=1;dx++)//八个方位,用循环
    {
        for(int dy=-1;dy<=1;dy++)
        {
            int nx=x+dx,ny=y+dy;
            if(nx>=0&&nx<length&&ny>=0&&ny<width&&ch[nx][ny]==‘W‘)//找W,W在一块的只用一次dfs
                dfs(nx,ny);
        }
    }
}
int main()
{
    while(cin>>length>>width)
    {
        int num=0;
        getchar();//跳空行
        for(int i=0;i<length;i++)
        {
            scanf("%s",ch[i]);//避免吸入空行
        }
        for(int i=0;i<length;i++)
        {
            for(int j=0;j<width;j++)
            {
                if(ch[i][j]==‘W‘)
                {
                    dfs(i,j);
                    num++;
                }
            }
        }
        cout<<num<<endl;
    }
    return 0;
}

以上是关于深度搜索---------Lake counting的主要内容,如果未能解决你的问题,请参考以下文章

Lake Counting_深度搜索_递归

Lake Counting (DFS)

Lake Counting (POJ No.2386)

dfs基础介绍以及 Lake counting

“数据湖三剑客”Hudi、Delta Lake和Iceberg 深度对比

poj-2386 lake counting(搜索题)