- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我找到了 Dijkstra 算法并将其应用到我创建的图表中 - 它显示了我所在地区的 map
代码工作正常,但我希望它显示它访问过的所有节点,以便从源节点到达位置节点。因此,例如:如果我将源节点设置为 1 (Banstead),并将位置节点设置为 4 (Whteleafe) - 我希望它可能将它访问过的节点存储在数组中,如 Array = {1,2,4} Any想法?我想将它放在一个 FXML 文件中,并将节点作为椭圆并用线连接它们 - 但为了这样做,我需要存储所访问节点的值。
package dijkstras;
public class Dijkstras {
static class createGraph{
int vertices;
int matrix[][];
public createGraph(int vertex){
this.vertices = vertex;
matrix = new int[vertex][vertex];
}
public void edge(int source, int destination, int weight){
matrix[source][destination] = weight;
matrix[destination][source] = weight;
}
int getMinVertex(boolean [] mst, int [] key){
int minKey = Integer.MAX_VALUE;
int vertex = -1;
for (int i = 1; i < vertices; i++) {
if(mst[i]==false && minKey>key[i]){
minKey = key[i];
vertex =i;
}
}
return vertex;
}
public void dijkstras(int sourceVertex){
boolean[] spt = new boolean[vertices];
int [] distance = new int[vertices];
int infinity = Integer.MAX_VALUE;
//setting all distances to infinity
for(int i=1; i<vertices; i++){
distance[i] = infinity;
}
//test for starting vertext = 1
distance[sourceVertex] = 1;
//create tree
for(int i=1; i<vertices; i++){
int vertexU = getMinVertex(spt, distance);
spt[vertexU] = true;
//go through all possible paths adjacent to vertex
for(int vertexV=1; vertexV<vertices; vertexV++){
//check if edge between Vu and Vv exists
if(matrix[vertexU][vertexV]>0){
//checks vertexV exists and if distance is not infinite
if(spt[vertexV]==false && matrix[vertexU][vertexV]!=infinity){
int newKey = matrix[vertexU][vertexV] + distance[vertexU];
if(newKey<distance[vertexV])
distance[vertexV] = newKey;
}
}
}
}
System.out.println();
printDijkstras(sourceVertex, distance);
}
public void printDijkstras(int sourceVertex, int [] key){
System.out.println("Dijkstra Algorithm:");
int LocationOfChosenUser = 10;
System.out.println("Source Vertex: "+ sourceVertex + " to " +
LocationOfChosenUser + " distance: " + (key[LocationOfChosenUser]-1));
}
}
public static void graph() {
int vertices = 18;
createGraph graph = new createGraph(vertices);
int sourceVertex = 8;
//adding all nodes
graph.edge(1,2,4); graph.edge(1,17,3);
graph.edge(2,1,4); graph.edge(2,4,4); graph.edge(2,10,5);
graph.edge(3,4,1); graph.edge(3,6,5); graph.edge(3,5,2);
graph.edge(4,2,4); graph.edge(4,3,1); graph.edge(4,5,2);
graph.edge(5,4,2); graph.edge(5,3,2); graph.edge(5,6,3); graph.edge(5,9,4); graph.edge(5,10,5);
graph.edge(6,3,5); graph.edge(6,5,3); graph.edge(6,7,2); graph.edge(6,9,2);
graph.edge(7,6,2); graph.edge(7,8,5);
graph.edge(8,7,5); graph.edge(8,9,4); graph.edge(8,12,5);
graph.edge(9,5,4); graph.edge(9,8,4); graph.edge(9,11,5); graph.edge(9,6,2);
graph.edge(10,2,5); graph.edge(10,5,5); graph.edge(10,13,1);graph.edge(10,14,3); graph.edge(10,17,6);
graph.edge(11,9,5); graph.edge(11,12,3); graph.edge(11,13,3);
graph.edge(12,8,5); graph.edge(12,11,3); graph.edge(12,15,4);
graph.edge(13,11,3); graph.edge(13,10,1); graph.edge(13,14,2);
graph.edge(14,10,3); graph.edge(14,13,2); graph.edge(14,16,6); graph.edge(14,15,6);
graph.edge(15,12,4); graph.edge(15,14,5); graph.edge(15,16,9);
graph.edge(16,15,9); graph.edge(16,17,1); graph.edge(16,14,6);
graph.edge(17,1,3); graph.edge(17,16,1);
graph.dijkstras(sourceVertex);
}
public static void main(String[] args){
graph();
}
}
如您所见,我将 sourceVertex 设置为 8,将 LocationVertex (LocationOfChosenUser) 设置为 10。输出如下所示:
Dijkstra Algorithm:
Source Vertex: 8 to 10 distance: 12
最佳答案
最简单的方法是只跟踪每个节点的前任节点。当您到达终点节点时,您可以回溯以找出您来自哪里。
添加初始化
int [] comeFrom = new int[vertices];
改变
if(newKey<distance[vertexV])
distance[vertexV] = newKey;
到
if(newKey<distance[vertexV]) {
distance[vertexV] = newKey;
comeFrom[vertexV] = vertexU;
}
打印出来的时候
List<Integer> path = new ArrayList();
int pos = LocationOfChosenUser;
while(pos != sourceVertex) {
path.add(pos);
pos = comeFrom[pos];
}
for (int i=path.size()-1; i>=0; i--) {
System.out.print(path.get(i));
if (i > 0) System.out.print(" -> ");
}
关于java - 寻找两个节点之间的最短距离,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55098831/
题: 是否有一种简单的方法可以获取正在运行的应用程序中泄漏的资源类型列表? IOW 通过连接到应用程序? 我知道 memproof 可以做到,但它会减慢速度,以至于应用程序甚至无法持续一分钟。大多数任
正确地说下面的代码会将自定义日志发送到.net核心中的Docker容器的stdout和stderr吗? console.Writeline(...) console.error(..) 最佳答案 如果
我想将一个任务多次重复,放入 for 循环中。我必须将时间序列对象存储为 IExchangeItem , openDA 中的一个特殊类(数据同化软件)。 这是任务之一(有效): HashMap ite
我需要从文件中读取一个数组。该数组在文件中不是连续排序的,必须跳转“偏移”字节才能获得下一个元素。假设我读取一个非常大的文件,什么更有效率。 1) 使用增量相对位置。 2)使用绝对位置。 选项 1:
我有一个安装程序(使用 Advanced Installer 制作)。我有一个必须与之交互的应用程序,但我不知道如何找到该安装的 MSIHANDLE。我查看了 Microsoft 引用资料,但没有发现
我在替换正则表达式中的“joe.”等内容时遇到问题。这是代码 var objects = new Array("joe","sam"); code = "joe.id was here so was
我有 A 类。A 类负责管理 B 对象的生命周期,它包含 B 对象的容器,即 map。 ,每个 B 对象都包含 C 对象的容器,即 map .我有一个全局 A 对象用于整个应用程序。 我有以下问题:我
任何人都可以告诉我在哪里可以找到 freeImage.so 吗?我一直在努力寻找相同的东西但没有成功..任何帮助将不胜感激。我已经尝试将 freeimage.a 转换为 freeImage .so 并
在单元测试期间,我想将生成的 URL 与测试中定义的静态 URL 进行比较。对于此比较,最好有一个 TestCase.assertURLEqual 或类似的,它可以让您比较两个字符串格式的 URL,如
'find ./ -name *.jpg' 我正在尝试优化上述语句的“查找”命令。 在查找实现中处理“-name”谓词的方法。 static boolean pred__name __common (
请原谅我在这里的困惑,但我已经阅读了关于 python 中的 seek() 函数的文档(在不得不使用它之后),虽然它帮助了我,但我仍然对它的实际含义有点困惑,任何非常感谢您的解释,谢谢。 最佳答案 关
我在我正在使用的库中找到了这个语句。它应该检查集群中的当前节点是否是领导者。这是语句:(!(cluster.Leader?.IsRemote ?? true)) 为什么不直接使用 (cluster.L
我发现 JsonParser 在 javax.json.stream 中,但我不知道在哪里可以找到它。谁能帮帮我? https://docs.oracle.com/javaee/7/api/javax
关闭。这个问题需要更多focused .它目前不接受答案。 想改善这个问题吗?更新问题,使其仅关注一个问题 editing this post . 6年前关闭。 Improve this questi
如果 git 存储库中有新的更改可用,我有一个多分支管道作业设置为每分钟由 Jenkinsfile 构建。如果分支名称是某种格式,我有一个将工件部署到环境的步骤。我希望能够在每个分支的基础上配置环境,
关闭。这个问题不满足Stack Overflow guidelines .它目前不接受答案。 想改善这个问题吗?更新问题,使其成为 on-topic对于堆栈溢出。 6年前关闭。 Improve thi
我想我刚刚意识到当他们不让我使用 cfdump 时我的网络主机是多么的限制。这其实有点让我生气,真的,dump 有什么害处?无论如何,我的问题是是否有人编写了一个 cfdump 替代方案来剔除复杂类型
任务:我有多个资源需要在一个 HTTP 调用中更新。 要更新的资源类型、字段和值对于所有资源都是相同的。 示例:通过 ID 设置了一组汽车,需要将所有汽车的“状态”更新为“已售出”。 经典 RESTF
场景:表中有 2 列,数据如下例所示。对于“a”列的相同值,该表可能有多个行。 在示例中,考虑到“a”列,“1”有三行,“2”有一行。 示例表“t1”: |a|b ||1|1.1||1|1.2||1
我有一个数据框: Date Price 2021-01-01 29344.67 2021-01-02 32072.08 2021-01-03 33048.03 2021-01-04 32084.
我是一名优秀的程序员,十分优秀!