水平和垂直遍历点的算法

发布于 2024-08-13 04:53:57 字数 68 浏览 6 评论 0原文

2D 平面上有 n 个点。机器人想要访问所有这些,但只能水平或垂直移动。它应该如何访问所有这些点才能使其覆盖的总距离最小?

There are n points in the 2D plane. A robot wants to visit all of them but can only move horizontally or vertically. How should it visit all of them so that the total distance it covers is minimal?

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

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

发布评论

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

评论(1

青芜 2024-08-20 04:53:57

这是旅行推销员问题,其中每对点之间的距离为 |y2-y1| +|x2-x1| (称为直线距离或曼哈顿距离)。它是NP-hard,这基本上意味着没有已知的有效解决方案。

维基百科上的解决问题的方法

最简单的算法是简单的强力搜索,您可以计算点的每个可能排列的距离并找到最小值。其运行时间为 O(n!)。这最多适用于大约 10 个点,但对于大量点来说,它很快就会变得太慢。

This is the Travelling Salesman Problem where the distance between each pair of points is |y2-y1|+|x2-x1| (called Rectilinear distance or Manhattan distance). It's NP-hard which basically means that there is no known efficient solution.

Methods to solve it on Wikipedia.

The simplest algorithm is a naive brute force search, where you calculate the distance for every possible permutation of the points and find the minimum. This has a running time of O(n!). This will work for up to about 10 points, but it will very quickly become too slow for larger numbers of points.

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