- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
I 函数接受一组点,检查它们与给定点的距离,并首先返回最近点的有序集。如果两个点到给定点的距离相同,则两个点都会被保留,没有问题。
我使用该函数来选择距离任何用户给定的具有 2D 坐标的点最近的 k 个点。只需从有序集中选取前 k 个点即可。
现在是这样的,我猜对于每个添加的点都会一次又一次地调用距离计算(不好)
import java.awt.geom.Point2D;
import java.util.Comparator;
/**
* This comparator sorts two points by destination distance.
*/
public class NearestComparator implements Comparator<Point2D> {
/** The point to be reached. */
private Point2D destination;
/**
* Instantiates a new comparator that sorts points by destination distance, descendant.
*
* @param destination the point to reach
*/
public NearestComparator(Point2D destination) {
this.destination = destination;
}
/**
* Sort two points by destination distance, descendant.
*
* @param p1 the first point
* @param p2 the second point
*/
@Override
public int compare(Point2D p1, Point2D p2) {
double p1_distance = p1.distance(destination);
double p2_distance = p2.distance(destination);
return (p1_distance < p2_distance) ? -1 : ((p1_distance > p2_distance) ? 1 : 0);
}
}
现在的排序代码是这样的
private List<Point2D> getSendOrder(Point2D destination) {
LinkedList<Point2D> sendOrderList = new LinkedList<Point2D>();
sendOrderList.add(myPosition);
Iterator<Point2D> keyIter = neighborLinks.keySet().iterator();
while (keyIter.hasNext()) {
sendOrderList.add(keyIter.next());
}
// sort list by distance from destination
Collections.sort(sendOrderList, new NearestComparator(destination));
return sendOrderList;
}
标准库中是否有一个数据结构允许我添加一个具有与其自己的类无关的固定“优先级”的元素?我的意思是,类似 (priority 1, Object ref x)
, (priority 2, Object ref y)
, (priority 1, Object ref z)
等等
我需要它尽可能快,并产生尽可能少的垃圾。它用于图中的路由算法。不需要快速访问有序集的中间,只需访问顶部(距离最小,优先级最高)。然而,能够以有效的方式删除最优先的元素非常重要。
如您所见,只要我得到一个以正确方式排序的列表(第一个元素具有更高的优先级等),我就不需要在返回的结果中保留优先级信息。
最佳答案
我有想法使用 Map.Entry 来包装距离,那么如果您需要的话,这也允许深度复制。
这是一个完整的示例
package sandbox;
import java.awt.geom.Point2D;
import java.util.AbstractMap.SimpleEntry;
import java.util.Arrays;
import java.util.Collections;
import java.util.Comparator;
import java.util.HashMap;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;
import java.util.Random;
public class Node {
private Point2D myPosition;
private Map<Point2D, Node> neighborLinks;
public class NearestComparator implements Comparator<Entry> {
@Override
public int compare(Entry e1, Entry e2) {
return Double.compare((Double) e1.getValue(), (Double) e2.getValue());
}
}
public List<Point2D> getSendOrder(Point2D destination) {
LinkedList<Entry> sendOrderList = new LinkedList<>();
Entry<Point2D, Double> pointWithDist;
// calculate distance from destination and wrap it using an Entry
pointWithDist = new SimpleEntry<>(myPosition, myPosition.distance(destination));
sendOrderList.add(pointWithDist);
for (Point2D otherPoint : neighborLinks.keySet()) {
pointWithDist = new SimpleEntry<>(otherPoint, otherPoint.distance(destination));
sendOrderList.add(pointWithDist);
}
// sort list by distance from destination
Collections.sort(sendOrderList, new NearestComparator());
// print all the list (debug)
System.out.println(Arrays.toString(sendOrderList.toArray()));
// unwrap and deep copy
LinkedList<Point2D> copiedList = new LinkedList<>();
Point2D pointToCopy, copiedPoint;
for (Entry entry : sendOrderList) {
pointToCopy = (Point2D) entry.getKey();
copiedPoint = new Point2D.Double(pointToCopy.getX(), pointToCopy.getY());
copiedList.add(copiedPoint);
}
return copiedList;
}
public Node(Point2D myPosition, Map<Point2D, Node> neighborLinks) {
this.myPosition = myPosition;
this.neighborLinks = neighborLinks;
}
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
Map<Point2D, Node> neighborLinks = new HashMap<>();
Random rand = new Random();
double x, y, max = 5;
for (int i = 0; i < 10; ++i) {
x = rand.nextDouble() * max;
y = rand.nextDouble() * max;
neighborLinks.put(new Point2D.Double(x, y), null);
}
Point2D nodePos = new Point2D.Double();
Node myNode = new Node(nodePos, neighborLinks);
Point2D destination = new Point2D.Double();
myNode.getSendOrder(destination);
}
}
关于Java快速找到距离给定二维点最近的k个点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22388769/
我需要获取过去 24 小时的记录,但不能像这样按小时分组: SELECT HOUR(CompDate) AS hour, COUNT(1) AS action FROM mytable WHERE (
我们有一个自动完成列表,当您向某人发送电子邮件时会填充该列表,这一切都很好,直到列表变得非常大,您需要输入越来越多的地址才能找到您想要的地址, 这违背了自动完成的目的 我在想应该添加一些逻辑,以便自动
我在 android 的锁屏上工作我们如何禁用导航软按钮,已经尝试了所有方法,systemoverlay但它不起作用,在按下主页按钮时它会终止服务和 Activity 。 最佳答案 后退按钮可以通过覆
我有一个报告创建时间为 2016-05-30,现在我需要从报告时间开始的最后 7 天。我怎样才能使用时刻? report_create_time = moment('2016-05-30').form
我想找出向量中最接近的三个数字。 就像是 v = c(10,23,25,26,38,50) c = findClosest(v,3) c 23 25 26 我试过 sort(colSums(as.ma
考虑以下表结构: id speed 1 100 2 200 3 300 4 400 5 500 考虑以下查询:"SELECT * FROM records WHERE
我正在开发一个依赖 YouTube 直播和实时聊天(也来自 YouTube)的网络应用。事情进展顺利,突然嵌入的聊天功能无法在移动设备上运行。 我试图在我这边找到一个错误或一些无效的配置,但我找不到。
我正在制作一个 React Native 应用程序,它有一个安全部分,用户必须在其中输入密码才能解锁 protected 内容。问题是,当用户在锁定该部分之前切换到另一个应用程序时,将生成屏幕截图以及
我有一条 SQL 语句 (SQL Server Management Studio),我通过仪表板软件将数据传递到 where 语句中。用户可以选择年份(2013 年或现在的 2014 年)和月份(作
我有一个脚本可以添加一组行,使您能够在 SharePoint 列表表单中捕获其他访问者的信息。我有两个 anchor 标记,一个用于添加,另一个用于删除。当我添加一个新的访问者时它有效,当我删除访问者
我正在学习斯坦福 iOS 类(class),我有一个问题,我认为与最近的更新有关。这是代码部分: func evaluate(ops: [Op]) -> (result: Double?,remain
我注意到我的应用有一个奇怪的行为。每当我按下主页按钮时,我的应用程序就会被杀死。我没有在应用程序堆栈中看到该应用程序。我可以看到之前启动的其他应用程序。最初我怀疑 android:launchMode
我需要获取过去 7 天内的所有付费和临时条目,但我总是收到所有退回的内容。我不确定我做错了什么,我已经阅读了这里的很多帖子,但无法理解它是什么。 MySQL 5.6(如果它与我一直在做的事情有什么不同
我的表有一列以 mysql time() 格式格式化。 当它是一个值分配给名为 $preRemainOt 的 php 变量时我想重新安排到最近的 15 分钟 function roundTime($w
我想获取过去 7 天内每天每个产品的最后时间戳。数据库中有数千条记录。我怎样才能通过查询来做到这一点。大约有 25 种不同的产品,每种产品每天大约有 50 个时间戳。 表:构建数据 'Timesta
我现在的代码正在从 SQL 中获取移动应用程序中的数据,首先添加显示,我需要将其设置为在我的 Android 应用程序中显示最后添加的第一个。我有如下所示的 api 代码,最新的是根据我的要求显示的,
我有一张 table ,说 table 的描述为: | ID | SNO | c1 | c2 | c3 | ___________________________________ |
我有两个大小相等的向量,例如 A=[2.29 2.56 2.77 2.90 2.05] and B=[2.34 2.62 2.67 2.44 2.52]. 我有兴趣在两个相同大小的向量 A 和 B 中
之前,我在这里发布了一个问题,询问有关如何从驱动器读取和写入数据的建议,而不是通过像“aaa.txt”这样的文件标签,而只是扇区..我被建议尝试阅读和写作....但新问题出现了……毛茸茸的参数 int
我想删除在给定时间段内未登录的用户,但我稍后会根据结果选择时间段。 所以我需要报告,其中我将收到过去 1 个月、2 个月...... n 个月内未登录的用户数量。 我不太清楚如何在单个 mysql 查
我是一名优秀的程序员,十分优秀!