找到所有线段的交点

发布于 2024-09-30 19:23:14 字数 117 浏览 1 评论 0原文

给定一个线段列表,找到交点的最简单方法是循环遍历线段列表,检查它们是否相交,如果相交则记录交点。

但这种方法的运行时间是O(n^2),效率非常低。有没有其他算法可以加快这个过程?

Given a list of line segments, the easiest way to find the intersection points is to loop through the line segment list, check whether they are intersecting and record the intersection point if they do.

But the runtime of this method is O(n^2), which is very inefficient. Is there any other algorithm that could speed up this process?

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

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

发布评论

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

评论(1

纵山崖 2024-10-07 19:23:14

Bentley-Ottmann 算法可能就是您正在寻找的。

The Bentley-Ottmann Algorithm may be what you are looking for.

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