码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2020-05-28 13:45:37      阅读:53      评论:0      收藏:0      [点我收藏+]

标签:space   har   tchar   using   ios   max   width   循环   ==   

#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

标签:space   har   tchar   using   ios   max   width   循环   ==   

原文地址:https://www.cnblogs.com/Joe2019/p/12979705.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!