查找线交叉点算法

发布于 2024-10-17 04:04:45 字数 271 浏览 3 评论 0原文

可能的重复:
查找所有线段的交点 < /p>

嗨,

我有一组由 2 个点定义的线。您能给我推荐一种可以找到所有交叉点的快速算法吗?

谢谢

Possible Duplicate:
Find the Intersection Points of All the Line Segments

Hi,

I have a set of lines defined by 2 points. Could you please recommend me a fast algorithm which finds all the crossings?

Thanks

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

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

发布评论

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

评论(1

倾城泪 2024-10-24 04:04:45

如果您指的是线段,则可以使用 Bentley-Ottmann 算法 查找 O((n+k)*log(n)) 中的所有交叉点,其中 k 是交叉点总数,n是集合中的段数。

In case you mean line-segments, you can use the Bentley-Ottmann algorithm which finds all crossings in O((n+k)*log(n)) where k is the total numer of crossings and n is the number of segments in your set.

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