- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
重新编辑:抱歉,如果我将代码粘贴到pastebin。我不知道你们能这么快结束问题。
所以我正在修改代码,完成后我不知道为什么我做错了,因为:
Everytime I add a entry in the map file It instead of calculating the the path It returns infinity on the eigth node: It doesnt give a stack trace but instead it throws:
Distance to Mandurriao: 0.0
Path: [Mandurriao]
Distance to Jaro: 79.0
Path: [Mandurriao, Jaro]
Distance to Iloilo: 118.0
Path: [Mandurriao, Jaro, Iloilo]
Distance to Leganes: 182.0
Path: [Mandurriao, Jaro, Leganes]
Distance to Tagbak: 81.0
Path: [Mandurriao, Tagbak]
Distance to Derp: 214.0
Path: [Mandurriao, Tagbak, Derp]
Distance to Herp: 305.0
Path: [Mandurriao, Tagbak, Derp, Herp]
Distance to Tugigarao: Infinity
Path: [Tugigarao]
And everytime I make my map file less than 7 nodes it gives me:
Exception in thread "main" java.lang.NullPointerException
at Dijkstra.search(Dijkstra.java:81)
at Dijkstra.main(Dijkstra.java:132)
我是一个彻头彻尾的java菜鸟,一天前我只是在写java代码。
所以这是代码:
import java.util.PriorityQueue;
import java.util.List;
import java.util.ArrayList;
import java.util.Collections;
import java.io.*;
import java.util.*;
class Vertex implements Comparable<Vertex>
{
public final String name;
public Edge[] adjacencies;
public double minDistance = Double.POSITIVE_INFINITY;
public Vertex previous;
public Vertex(String argName) { name = argName; }
public String toString() { return name; }
public int compareTo(Vertex other)
{
return Double.compare(minDistance, other.minDistance);
}
}
class Edge
{
public final Vertex target;
public final double weight;
public Edge(Vertex argTarget, double argWeight)
{ target = argTarget; weight = argWeight; }
}
public class Dijkstra
{
public static void computePaths(Vertex source)
{
source.minDistance = 0.;
PriorityQueue<Vertex> vertexQueue = new PriorityQueue<Vertex>();
vertexQueue.add(source);
while (!vertexQueue.isEmpty()) {
Vertex u = vertexQueue.poll();
// Visit each edge exiting u
for (Edge e : u.adjacencies)
{
Vertex v = e.target;
double weight = e.weight;
double distanceThroughU = u.minDistance + weight;
if (distanceThroughU < v.minDistance) {
vertexQueue.remove(v);
v.minDistance = distanceThroughU ;
v.previous = u;
vertexQueue.add(v);
}
}
}
}
public static List<Vertex> getShortestPathTo(Vertex target)
{
List<Vertex> path = new ArrayList<Vertex>();
for (Vertex vertex = target; vertex != null; vertex = vertex.previous)
path.add(vertex);
Collections.reverse(path);
return path;
}
///////////////////////////////////////////////////////////////////////////
public static int search(String [ ] numbers, String key)
{
for (int index = 0; index < numbers.length; index++)
{
if ( numbers[index].equals(key) )
return index; //We found it!!!
}
// If we get to the end of the loop, a value has not yet
// been returned. We did not find the key in this array.
return -1;
}
///////////////////////////////////////////////////////////////////////
public static void main(String[] args)
{
int MapLength = 0;
Vertex[] v = new Vertex[100];
String[] names = new String[100];
System.out.println("Initalized");
try {
int i = 0;
System.out.println("Initalized[0]");
FileInputStream fStream = new FileInputStream("f:\\map2.txt");
System.out.println("Initalized[1]");
BufferedReader in = new BufferedReader(new InputStreamReader(fStream));
System.out.println("Initalized[2]");
while (in.ready()) {
String parsed = "";
parsed = in.readLine();
String[] t = parsed.split(">");
if(t[0].equals("v")){
System.out.println("Added>" + parsed);
v[i] = new Vertex(t[1]);
names[i] = t[1];
i++;
MapLength = i;
}
if(t[0].equals("e")){
System.out.println("Initalized[3]");
int a;
int weight;
int ii = 0;
System.out.println("Initalized[4]." + t[1]);
String[] container = t[1].split("-");
System.out.println("Initalized[5]." + container);
Edge[] temp = new Edge[(container.length - 1) / 2];
for(a = 1; a < container.length; a +=2 ){
System.out.println("Initalized[6]." + names[search( names , container[ a ] )] + "...." + Integer.parseInt(container[ a + 1 ]));
temp[ii] = new Edge(v[ search( names , container[ a ] ) ], Integer.parseInt(container[ a + 1 ]));
ii++;
}
//System.out.println("Debug@LineCurrentNumberSearch: " + search( names , container[ a ] ) );
v[ search( names , container[ 0 ] ) ].adjacencies = temp;
}
}
in.close();
} catch (IOException e) {
System.out.println("File input error" + e);
}
/*
v[0] = new Vertex("Harrisburg");
v[1] = new Vertex("Baltimore");
v[2] = new Vertex("Washington");
v[3] = new Vertex("Philadelphia");
v[4] = new Vertex("Binghamton");
v[5] = new Vertex("Allentown");
v[6] = new Vertex("New York");
v[0].adjacencies = new Edge[]{ new Edge(v[1], 79.83), new Edge(v[5], 81.15) };
v[1].adjacencies = new Edge[]{ new Edge(v[0], 79.75),
new Edge(v[2], 39.42),
new Edge(v[3], 103.00) };
v[2].adjacencies = new Edge[]{ new Edge(v[1], 38.65) };
v[3].adjacencies = new Edge[]{ new Edge(v[1], 102.53),
new Edge(v[5], 61.44),
new Edge(v[6], 96.79) };
v[4].adjacencies = new Edge[]{ new Edge(v[5], 133.04) };
v[5].adjacencies = new Edge[]{ new Edge(v[0], 81.77),
new Edge(v[3], 62.05),
new Edge(v[4], 134.47),
new Edge(v[6], 91.63) };
v[6].adjacencies = new Edge[]{ new Edge(v[3], 97.24),
new Edge(v[5], 87.94) };
*/
Vertex[] vertices = new Vertex[MapLength];
int j;
for(j = 0; j < MapLength; j++){
vertices[j] = v[j];
}
computePaths(v[0]);
for (Vertex a : vertices)
{
System.out.println("Distance to " + a + ": " + a.minDistance);
List<Vertex> path = getShortestPathTo(a);
System.out.println("Path: " + path);
}
}
}
这是 map 文件:
v>Mandurriao
v>Jaro
v>Iloilo
v>Leganes
v>Tagbak
v>Derp
v>Herp
v>Tugigarao
e>Mandurriao-Jaro-79-Tagbak-81
e>Jaro-Mandurriao-79-Iloilo-39-Leganes-103
e>Iloilo-Jaro-38
e>Leganes-Jaro-102-Tagbak-61-Derp-69
e>Tagbak-Derp-133
e>Derp-Mandurriao-81-Leganes-62-Tagbak-134-Herp-91
e>Herp-Leganes-97-Derp-87
e>Tugigarao-Herp-100
有人可以帮助我吗?提前致谢。
最佳答案
如果输入文件包含以下条目:
v>Mandurriao
v>Jaro
v>Iloilo
v>Leganes
v>Tagbak
v>Derp
e>Mandurriao-Jaro-79-Tagbak-81
e>Jaro-Mandurriao-79-Iloilo-39-Leganes-103
e>Iloilo-Jaro-38
e>Leganes-Jaro-102-Tagbak-61-Derp-69
e>Tagbak-Derp-133
顶点“Derp”没有任何相邻顶点,因此u.adjacency为空,导致小于7的条目出现空指针异常。
关于java - 对这段代码感到困惑。迪杰斯特拉算法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14596020/
我有一个程序可以打开一个窗口并快速改变背景颜色并随机弹出矩形和椭圆形。我的代码有效,但我不知道为什么,因为我没有在我的代码中调用 repaint() 函数。当我使用我个人的 update() 函数包含
var allRapidSpells = $$('input[value^=RSW]'); 谁能告诉我这是做什么的? 最佳答案 我敢猜测您正在使用 MooTools ,一个 JavaScript 框架
我有一个抽象父类,它有多个子类。我希望 child 能够拥有一个对于该 child 的每个实例都相同的变量。我不想将构造函数传递给 child 来告诉它它的名字,因为当它可以被硬编码时,这看起来很愚蠢
我刚刚在 Git 存储库上做了一些糟糕的事情,我不知道如何解决这个问题。我什至不知道我是怎么把它弄成这样的……! 在存储库(托管在 git hub 上)上,有 3 个我感兴趣的分支:master、br
我是 GIT 的新手,在理解提交日志图时遇到问题。 我感觉每条平行线都是一个分支。虽然我的源代码只有 2 个分支。我在下面提供的提交日志图中看到 3-4 条平行线(Microsoft Team Ser
我是 WPF 的新手,ScrollViewer 让我很沮丧。要么我只是没有“得到”它,要么它是一种有限的控制。 这是我的挫折: 水平滚动错误 水平滚动条仅在列表底部可见(我必须滚动到底部才能看到) 坏
那么 $('table.selectable td.capable input:text') 比 $('table.selectable td input:text') 更好吗?换句话说,指定一个类会
我刚刚完成了计算机图形学类(class),我们必须对光线追踪器进行编程。尽管所有结果都是正确的,但我对 OpenMP 的使用感到困惑(顺便说一句,这不是类(class)的一部分)。我有这个循环(C++
与 PatternSynonyms ( explicitly bidirectional form ),pattern-to-expr 方程实际上形成了一个函数,但拼写为大写(假设您最终得到正确类型的
我是 javascript/coffeescript 新手。 有人可以解释一下为什么这个 CoffeeScript/JavaScript 会毫无延迟地快速通过吗?我对第一种情况的想法是,它是对 upd
如果我调用document.getElementsByClassName('cl'),我会得到一个 HTMLCollection。它似乎包含 Element 对象而不是 HTMLElement 对象,
这是我本月的 azure payasyougo 使用费用。 我很难理解为什么我要为标准中型应用服务付费,我认为它会包含在计算时间中?我只运行一个云服务,这对于一个没有做太多事情的云服务来说似乎有点陡峭
除了the issue I am already having之外,我还在I saw a video on it之后安装了HBase(尚未安装)之前,还安装了Zookeeper。在安装它时,我遇到了许
我正在将 XSLT 与 regexp:match exslt 函数一起使用。上述函数采用 JavaScript Regex 模式。因此,我尝试匹配一组数字 1 到 3 OR 5 到 7 OR 9 到
我想知道为什么这段代码会给出消息:SyntaxError:意外的标记其他。 var compare = function(choice1,choice2){ if(choice1===choice2)
我尝试使用复选框和 JQuery 过滤日历上的事件, $(document).ready(function () { $('.scrollable-menu :checkbox').click(f
假设我们有一个用户想要一个名为:“test/lasdhjal.txt”,无论如何。现在,如果我将其放入新的文件(输入)中;对象里面,它会认为 test/是一个文件夹,而它是名称的一部分。我能做什么呢?
问题是 stash 的更改不会留在我 stash 它们的分支中。其他分支存储将被覆盖示例: 我愿意: git checkout iss4 // made some changes gi
我是一个 java 新手,并且在 StackOverflow 错误/在类之间访问文件的能力方面遇到了一个非常令人困惑的问题。我知道根本原因可能是我进行了一些递归调用,但修复它的语法却让我无法理解。我认
public X createData(int n) { int[] values = new int[n]; Random rand = new Random(); for
我是一名优秀的程序员,十分优秀!