首页 > 代码库 > 200. Number of Islands
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
这道题一开始不会做,参考大神的做法,用DFS做法,建一个visited 二维数组记录‘1’是否被访问过。只有在没有访问过的‘1’的时候才将结果加1。
public int NumIslands(char[,] grid) { int row = grid.GetLength(0); int col = grid.GetLength(1); var visited = new bool[row,col]; int res = 0; for(int i = 0;i< row;i++) { for(int j =0;j< col;j++) { if(grid[i,j] == ‘1‘ && !visited[i,j]) { DFSMarkVisted(grid,i,j,visited); res++; } } } return res; } private void DFSMarkVisted (char[,] grid, int x, int y, bool[,] visited) { if(x < 0 || x>= grid.GetLength(0)) return; if(y < 0 || y>= grid.GetLength(1)) return; if(grid[x,y] != ‘1‘ || visited[x,y]) return; visited[x,y] = true; DFSMarkVisted(grid,x-1,y,visited); DFSMarkVisted(grid,x+1,y,visited); DFSMarkVisted(grid,x,y-1,visited); DFSMarkVisted(grid,x,y+1,visited); }
类似的题目有:
(M) Surrounded Regions
(M) Walls and Gates
(H) Number of Islands II
(M) Number of Connected Components in an Undirected Graph
200. Number of Islands
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。