计算最小邮政编码集的函数,其中所有邮政编码都在 x 英里之内

发布于 2024-12-07 11:21:04 字数 104 浏览 1 评论 0原文

我需要一个函数(任何语言,但最好是脚本),它可以采用带有纬度/经度坐标的对象数组(比如说邮政编码),并返回原始数组的所有元素都在 x 范围内的最小子集(比如说20) 至少 1 名子集成员的英里。

I need a function (in any language but preferably a script) that can take an array of objects (lets say zipcodes) with latitude/longitude coordinates and return the smallest subset in which all the elements of the original array are within x (lets say 20) miles of at least 1 member of the subset.

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

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

发布评论

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

评论(1

追风人 2024-12-14 11:21:04

这是一个可以帮助您入门的贪心算法。

  1. 从空结果集 R 开始,并让 S 为所有邮政编码的集合。
  2. 对于 S 中的每个邮政编码 Zn,计算距 Zn 20 英里范围内的邮政编码集合 Vn >.
  3. 找到元素最多的集合Vmax - 将对应的邮政编码Zmax添加到结果集R中,并删除其中的所有元素Vmax 来自 S
  4. 对于 S 中的剩余元素,重复步骤 2,直到 S 为空。那么最后一组是R

Here is a greedy algorithm to get you started.

  1. Start with an empty result set R and let S be the set of all zipcodes.
  2. For each zipcode Zn in S, calculate the set Vn of zipcodes which are within 20 miles of Zn.
  3. Find the set Vmax with the most elements - Add the corresponding zipcode Zmax into the result set R, and remove all the elements of Vmax from S.
  4. With the remaining elements in S, repeat from step 2 until S is empty. Then the final set is R.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文