DataStructure-Algorithm
Algorithm-LeetCode-LintCode-ACM-ICPC
a19576
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
字典树 (Trie)
什么是 trie 树转载 2022-07-11 14:15:46 · 258 阅读 · 0 评论 -
Java数据结构和算法
https://www.cnblogs.com/ysocean/tag/Java数据结构和算法/转载 2019-08-10 19:21:05 · 142 阅读 · 0 评论 -
BFS-DFS
图文详解 BFS, DFS转载 2020-04-19 02:04:44 · 207 阅读 · 0 评论 -
Graph
深度优先搜索检测有向图有无环路算法 给定有向图 G = (V, E),需要判断该图中是否存在环路(Cycle)。例如,下面的图 G 中包含 4 个顶点和 6 条边。 实际上,上图中存在 3 个环路:0->2->0, 0->1->2->0, 3->3。 深度优先搜索(DFS:Depth-First Search)可以用于检测图中是否存在环。DFS 会对一个连通的图构造一颗树转载 2015-07-23 14:50:33 · 394 阅读 · 0 评论 -
ACM
http://icpc.baylor.edu/welcome.icpc转载 2013-10-16 14:36:46 · 591 阅读 · 0 评论 -
Algorism
二分图的最大匹配、完美匹配和匈牙利算法转载 2015-07-20 18:55:49 · 435 阅读 · 0 评论 -
test
http://blog.chinaunix.net/uid-26548237-id-3483650.html转载 2014-05-07 18:33:55 · 488 阅读 · 0 评论 -
ACM题目推荐
1. http://blog.youkuaiyun.com/neily/article/details/1609585 2. ACM题目分类: http://www.cnblogs.com/ltang/articles/1861284.html 3. 浙江传媒学院在线评测系统: http://oj.zjicm.acm.zj.cn/ 4. 北大: http://poj.org/ 5. 编程爱转载 2013-10-16 14:36:27 · 557 阅读 · 0 评论
分享