当前位置: 首页 > article >正文

力扣hot100——图论

200. 岛屿数量

class Solution {
public:
    int numIslands(vector<vector<char>>& grid) {
        int ans = 0;
        vector<int> dx = { 0, 1, 0, -1 };
        vector<int> dy = { 1, 0, -1, 0 };

        int n = grid.size(), m = grid[0].size();
        vector<vector<int>> vis(n, vector<int>(m, 0));
        
        
        auto dfs = [&](this auto&& dfs, int x, int y) -> void {
            vis[x][y] = 1;
            for (int i = 0; i < 4; i++) {
                int tx = x + dx[i];
                int ty = y + dy[i];
                if (tx < 0 || ty < 0 || tx >= n || ty >= m) continue;
                if (grid[tx][ty] == '0' || vis[tx][ty]) continue;
                dfs(tx, ty);
            }
            };
        
        for (int i = 0; i < n; i++) {
            for (int j = 0; j < m; j++) {
                if (!vis[i][j] && grid[i][j] == '1') {
                    dfs(i, j);
                    ans++;
                }
            }
        }
        return ans;
    }
};

 dfs求连通块

994. 腐烂的橘子 

class Solution {
public:
    int orangesRotting(vector<vector<int>>& a) {
        
        vector<int> dx = { 0, 1, 0, -1 };
        vector<int> dy = { 1, 0, -1, 0 };
        int n = a.size(), m = a[0].size();
        vector<vector<int>> vis(n, vector<int>(m, 0));

        queue <pair<int, int>> q;
        for (int i = 0; i < n; i++) {
            for (int j = 0; j < m; j++) {
                if (a[i][j] == 2) q.push({ i, j });
            }
        }

        int ans = 0;
        while (q.size()) {
            if (q.size()) ans++;
            vector<pair<int, int>> v;
            while (q.size()) {
                auto [x, y] = q.front();
                q.pop();
                vis[x][y] = 1;
                v.push_back({x, y});
            }
            for (auto [x, y] : v) {
                for (int i = 0; i < 4; i++) {
                    int tx = x + dx[i], ty = y + dy[i];
                    if (tx < 0 || ty < 0 || tx >= n || ty >= m) continue;
                    if (vis[tx][ty] || a[tx][ty] != 1) continue;
                    q.push({tx, ty});
                }
            }
        }
        for (int i = 0; i < n; i++) {
            for (int j = 0; j < m; j++) {
                if (a[i][j] == 1 && !vis[i][j]) return -1;
            }
        }

        return max(ans - 1, 0);
    }
};

bfs

207. 课程表 

class Solution {
public:
    bool canFinish(int n, vector<vector<int>>& a) {
        vector<vector<int>> e(n);
        vector<int> deg(n, 0);
        for (int i = 0; i < a.size(); i++) {
            int x = a[i][0], y = a[i][1];
            e[x].push_back(y);
            deg[y]++;
        }
        int cnt = 0;
        queue<int> q;
        for (int i = 0; i < n; i++) {
            if (!deg[i]) q.push(i);
        }

        while (q.size()) {
            auto u = q.front();
            q.pop();
            cnt++;
            for (auto v : e[u]) {
                deg[v]--;
                if (!deg[v]) q.push(v);
            }
        }

        return cnt == n;
    }
};

拓扑排序

 208. 实现 Trie (前缀树)

class Trie {
public:
    int idx;
    vector<vector<int>> tr;
    vector<int> cnt;
    Trie() {
        idx = 0;
        tr.resize(1e5, vector<int>(26, 0));
        cnt.resize(1e5, 0);
    }

    void insert(string word) {
        int p = 0;
        for (auto ch : word) {
            int t = ch - 'a';
            if (!tr[p][t]) tr[p][t] = ++idx;
            p = tr[p][t];
        }
        cnt[p]++;
    }

    bool search(string word) {
        int p = 0;
        for (auto ch : word) {
            int t = ch - 'a';
            if (!tr[p][t]) return false;
            p = tr[p][t];
        }
        return cnt[p];
    }

    bool startsWith(string prefix) {
        int p = 0;
        for (auto ch : prefix) {
            int t = ch - 'a';
            if (!tr[p][t]) return false;
            p = tr[p][t];
        }
        return true;
    }
};

字典树,注意节点不为0不代表有这个前缀

然后注意tr数组一维的大小


http://www.kler.cn/a/464337.html

相关文章:

  • AF3 AtomAttentionEncoder类解读
  • aws(学习笔记第二十二课) 复杂的lambda应用程序(python zip打包)
  • 高等数学学习笔记 ☞ 无穷小比较与等价无穷小替换
  • 学习路之VScode--自定义按键写注释(插件)
  • Qemu配置QXL显卡支持分辨率
  • 多层设计模式:可否设计各层之间公用的数据定义模块?
  • Cauchy-Schwarz不等式:向量内积的“上限卫士”,帮你衡量向量有多“同向”
  • 数据挖掘——神经网络分类
  • df.replace({‘b‘: ‘.‘}, {‘b‘: np.nan})
  • SpringMVC(四)响应
  • 【Go学习】-01-1-入门及变量常量指针
  • R语言基础| 广义线性模型
  • 【可实战】需求分析-测试计划↓-测试设计-测试执行-测试总结↓(包含测试计划、测试总结模板,以公司要求为准)
  • 【Unity3D】基于UGUI——简易版 UI框架
  • PgSQL如何用cmd命令行备份和还原数据库
  • SQLALchemy如何将SQL语句编译为特定数据库方言
  • Windows11 安卓子系统存储位置更改
  • 论文分享—供应链不安全:软件物料清单(SBOM)解决方案中缺乏完整性保护
  • Linux中sed命令的使用技巧
  • 计算机毕业设计hadoop+spark+hive民宿推荐系统 酒店推荐系统 民宿价格预测 酒店价格 预测 机器学习 深度学习 Python爬虫 HDFS集群
  • httpx.AsyncClient报错ProxyError: 504 Gateway Time-out
  • [CTF/网络安全] 攻防世界 Web_php_unserialize 解题详析
  • [算法] [leetcode-349] 两个数组的交集
  • [网络安全] DVWA之CSRF攻击姿势及解题详析合集
  • SAP SD学习笔记23 - 无偿出荷(免费交货)与继续无偿出荷(继续免费交货)
  • OpenCV-Python实战(15)——像素直方图均衡画