gpt4 book ai didi

java - 优先级队列/ArrayList 的 IndexOutOfBoundsException

转载 作者:太空宇宙 更新时间:2023-11-04 09:38:44 24 4
gpt4 key购买 nike

我正在这个项目上做 Dijkstra 算法(这似乎有很多代码,但我必须使用该项目的其他给定类和限制)并且我正在使用一个优先级队列,它将当前顶点的邻居放入队列中,该队列按顶点之间的最短距离确定优先级。它在大多数情况下工作正常,但是当将邻居坐标添加到优先级队列(pq)时,一旦它达到 7 个元素,它就会在 neighbor.add() 行之一中抛出 ArrayOutOfBoundsException 。邻居数组永远不会超过 4 的长度,并且每次循环都会重新创建,因此我不认为这是 ArrayList 删除问题。我是否对优先级队列做错了什么,或者它实际上是数组列表?我对使用这两种方法都比较陌生,所以这是我第一次深入研究它们。

我尝试尽可能多地改变优先级队列和ArrayList的创建方式以及它们的创建/更新位置,并且在不更改整个代码的情况下仍然可以使其正常工作。如果我注释掉 pq.add(nb) 行,那么它就没有这个异常,这让我进一步相信这就是我的问题所在。


Comparator<Coordinate> compareCoord = new Comparator<Coordinate>(){
public int compare(Coordinate a, Coordinate b){
if(a.getTerrainCost() > b.getTerrainCost()) return 1;
if(a.getTerrainCost() < b.getTerrainCost()) return -1;
else return 0;
}
};
PriorityQueue<Coordinate> pq = new PriorityQueue<>(compareCoord);

------------------------------------------------------------------------------
//Loop used to repeat through all the vertices
while(!unVisited.isEmpty()){
//Set current vertex to next in PQ and add/remove from appropriate lists
Coordinate smallest = pq.poll();
....
List<Coordinate> neighbor = new ArrayList<Coordinate>();
if(r!=0) neighbor.add(map.cells[r-1][c]);
if(r!=rows) neighbor.add(map.cells[r+1][c]); //Line of thrown exception
if(c!=0) neighbor.add(map.cells[r][c-1]);
if(c!=columns) neighbor.add(map.cells[r][c+1]);

//Run for loop for each neighbor of vertex
for(Coordinate nb : neighbor){
//Check to make sure the neighbor has not already been visited
if(!visited.contains(nb)){
//Check path length of the current vertex to the neighbor
int index = coords.indexOf(nb);
Coordinate n = coords.get(index);
int nCost = n.getTerrainCost();
int altPath = totalCosts.get(smallest) + nCost;
//If path is shorter, update variables and add neighbor to priority queue
if(altPath < totalCosts.get(nb)){
totalCosts.put(nb,altPath);
prevCoord.put(nb,smallest);
pq.add(nb); //If commented out, program runs with no exception
}
}
}
-----------------------------------------------------------------------------
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 7
at pathFinder.DijkstraPathFinder.<init>(DijkstraPathFinder.java:73)
at PathFinderTester.main(PathFinderTester.java:294)

Line 73 is commented to find where exception is coming from.

最佳答案

错误行包含 map.cells[r+1][c],因此请检查此单元格二维数组的尺寸,看看 r+1c 是否导致此问题

关于java - 优先级队列/ArrayList 的 IndexOutOfBoundsException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56200906/

24 4 0