算法导论
可姆可汗
USTC CS
展开
-
拓扑排序+动态规划——有向无环图最长路径问题
首先使用拓扑排序,然后从后往前对顶点计算最长路径。 转载:https://blog.csdn.net/weixin_42182525/article/details/98172071转载 2019-12-31 15:57:58 · 1537 阅读 · 0 评论 -
Josephus Recursion Solution
problem People are standing in a circle waiting to be executed. Counting begins at a specified point in the circle and proceeds around the circle in a specified direction. After a specified number of ...原创 2019-10-27 11:51:51 · 140 阅读 · 0 评论 -
使用红黑树扩展数据结构,求区间最大重叠点
目录问题描述求解过程a.证明b.设计数据结构扩增INTERVAL-INSERT操作:INTERVAL-DELETE操作:\left \{ l(x),...,r(x)\}FIND-POM算法: 在网上找了一些资料,发现讲述得都不大清晰,所以在这里总结一下。 问题描述 假设我们希望记录一个区间集合的最大重叠点,即被最多数目区间所覆盖的那个点。 a. 证明:最大重叠点一定是其中一个区间的端点 b. 设计...原创 2019-10-30 17:22:29 · 723 阅读 · 0 评论