
模块化模板
模块化模板
Abmcar
这个人并不懒,但他还是没有填写个人简介
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
[ACM模块化模板] 树状数组-Fenwick
昨天在codeforces看tourist代码是看到了这个Fenwick,看了半天才发下这是个树状数组 突然间就萌生了写一些常用模板封装起来的打算 git仓库链接:https://github.com/abmcar/ACM/tree/master/template template <typename T> class Fenwick { public: Fenwick(int _n) : n(_n) { fenw.resize(n + 1); }原创 2022-01-02 16:17:18 · 481 阅读 · 0 评论 -
[ACM模块化模板]最小生成树-Kruskal
更好的阅读体验:http://www.abmcar.top/archives/template-kruskal git仓库链接:https://github.com/abmcar/ACM/tree/master/template template <typename T> class Kruskal { public: int find(int x) { if (x == father[x]) return x; fathe原创 2022-01-02 16:29:06 · 334 阅读 · 0 评论