使用区间树的最大区间重叠

发布于 2024-09-24 13:12:52 字数 307 浏览 3 评论 0原文

这里有一个有趣的问题:给定一组 N 个区间([start, end]),使用区间树来查找重叠区间的最大数量。

StackOverflow 上的一个类似问题提供了 O(N) 解决方案,但如果我们可以预- 将区间处理成区间树,也许我们可以在对数时间内找到解决方案。

事实上,Cormen 等人在《算法导论》一书中的一个练习问题表明,通过增强红黑区间树可以实现这一点。有什么想法可以做到这一点吗?

Here is an interesting question: Given a set of N intervals ([start, end]), use an interval tree to find the maximum number of overlapping intervals.

A similar question on StackOverflow provided an O(N) solution, but if we can pre-process the intervals into an interval tree, perhaps we can find the solution in logarithmic time.

In fact, an exercise problem in the "Introduction to Algorithms" book by Cormen, et al., suggests that this is possible by augmenting a red-black interval tree. Any ideas how this can be done?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

无悔心 2024-10-01 13:12:52

一些看看的例子。您可以为此使用区间树。 CGAL 为此提供了强大的实现。另一个有趣的示例与您的问题类似。

Some example to look. You may use interval tree for this. CGAL gives you a robust implementation for this. Another interesting example similar to your problem.

倾城花音 2024-10-01 13:12:52

您可以在此处找到基于增强 AVL 自平衡树的区间树:http://code.google。 com/p/intervaltree/ 。它向您展示了如何做到这一点。你可以对红黑树做同样的事情。

you can find an interval tree based on an augmented AVL self balancing tree here: http://code.google.com/p/intervaltree/ . it shows you how it can be done. you can do the same to an red-black tree.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文