博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
200. Number of Islands(BFS)
阅读量:4180 次
发布时间:2019-05-26

本文共 741 字,大约阅读时间需要 2 分钟。

题目:求岛屿的数目,所有相连的1构成一个岛屿。

思路:BFS

class Solution {public:    int sum = 0;    void BFS(vector
>& grid,int x,int y){ int dir[4][2]={
{-1,0},{
1,0},{
0,-1},{
0,1}}; struct Q{ int x; int y; }; Q q[2500]; q[0].x = x; q[0].y = y; grid[x][y] = '0'; int l=0,r=1; while(l
= grid.size() || temp.y < 0 || temp.y >= grid[0].size() || grid[temp.x][temp.y]=='0') continue; q[r] = temp; grid[temp.x][temp.y] = '0'; r++; } l++; } sum++; } int numIslands(vector
>& grid) { for(int x=0;x

转载地址:http://pnrai.baihongyu.com/

你可能感兴趣的文章
面试题:强制类型转换
查看>>
Decorator模式
查看>>
Template模式
查看>>
Observer模式
查看>>
高性能服务器设计
查看>>
图文介绍openLDAP在windows上的安装配置
查看>>
Pentaho BI开源报表系统
查看>>
Pentaho 开发: 在eclipse中构建Pentaho BI Server工程
查看>>
android中SharedPreferences的简单例子
查看>>
android中使用TextView来显示某个网址的内容,使用<ScrollView>来生成下拉列表框
查看>>
andorid里关于wifi的分析
查看>>
Hibernate和IBatis对比
查看>>
Spring MVC 教程,快速入门,深入分析
查看>>
Android 的source (需安装 git repo)
查看>>
Ubuntu Navicat for MySQL安装以及破解方案
查看>>
java多线程中的join方法详解
查看>>
在C++中如何实现模板函数的外部调用
查看>>
HTML5学习之——HTML 5 应用程序缓存
查看>>
HTML5学习之——HTML 5 服务器发送事件
查看>>
SVG学习之——HTML 页面中的 SVG
查看>>