鱼C论坛

 找回密码
 立即注册
查看: 1405|回复: 0

[技术交流] LeetCode 200.岛屿数量

[复制链接]
发表于 2020-2-7 15:55:39 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
本帖最后由 798236606 于 2020-3-4 17:23 编辑

传送门:https://leetcode-cn.com/problems/number-of-islands/

解:
1.深度优先遍历(C)
void DFS(int x, int y, char** grid, int nr, int nc)
{
    ++grid[x][y];

    if (x - 1 >= 0 && grid[x - 1][y] == '1') DFS(x - 1, y, grid, nr, nc);
    if (x + 1 < nr && grid[x + 1][y] == '1') DFS(x + 1, y, grid, nr, nc);
    if (y - 1 >= 0 && grid[x][y - 1] == '1') DFS(x, y - 1, grid, nr, nc);
    if (y + 1 < nc && grid[x][y + 1] == '1') DFS(x, y + 1, grid, nr, nc);
}

int numIslands(char** grid, int gridSize, int* gridColSize)
{
    if (!grid || !gridSize || !*gridColSize) return 0;
    
    int num = 0;
    for (int i = 0; i < gridSize; ++i)
        for (int j = 0; j < *gridColSize; ++j)
            if (grid[i][j] == '1' && ++num)
                DFS(i, j, grid, gridSize, *gridColSize);              
    
    return num;
}

2.广度优先遍历(C++)
class Solution {
public:      
    void BFS(int x, int y, vector< vector<char> > &grid, int nr, int nc)
    {
        queue< pair<int, int> > q;

        q.push({x, y});
        while (!q.empty())
        {
            x = q.front().first, y = q.front().second;
            q.pop();
            
            if (x - 1 >= 0 && grid[x - 1][y] == '1' && ++grid[x - 1][y]) q.push({x - 1, y});
            if (x + 1 < nr && grid[x + 1][y] == '1' && ++grid[x + 1][y]) q.push({x + 1, y});
            if (y - 1 >= 0 && grid[x][y - 1] == '1' && ++grid[x][y - 1]) q.push({x, y - 1});
            if (y + 1 < nc && grid[x][y + 1] == '1' && ++grid[x][y + 1]) q.push({x, y + 1});
        }
    }
    
    int numIslands(vector< vector<char> > &grid) 
    {
        if (!grid.size()) return 0;
        
        int nr = grid.size(), nc = grid[0].size(), num = 0;
        for (int i = 0; i < nr; ++i)
            for (int j = 0; j < nc; ++j)
                if (grid[i][j] == '1' && ++num)
                    BFS(i, j, grid, nr, nc);
        
        return num;
    }
};
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-16 03:44

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表