• 大小: 7KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-06-08
  • 语言: Java
  • 标签: Java  算法  最短路径  

资源简介

(Java)求两顶点间最短路径和距离 在网上查看了一些博客,发现他们的代码都有些问题,于是自己重新写了一个,有一定注释

资源截图

代码片段和文件信息

import java.util.HashMap;
import java.util.linkedList;
import java.util.Queue;

public class GraphByMatrix {
private int[] vertexesArray;//顶点
Double[][] edgesMatrix;//存储路径时间
private boolean[] visited;//是否访问过
private int vertexSize = 0;
public boolean isDirected = false;//是否有向
public int maxSize = 0;
public static final Double MAX_VALUE = Double.MAX_VALUE;//如果没有直接连通就初始化为MAX_VALUE
public Double[] dist;//存储时间
public HashMap vertexQueue;//存储路径

public GraphByMatrix(int size){
init(size);
}

private void init(int size){//初始化
maxSize = size;
vertexesArray = new int[maxSize];
visited = new boolean[maxSize];
edgesMatrix = new Double[maxSize][maxSize];
for (int row = 0; row < maxSize; row++) {  
            for (int column = 0; column < maxSize; column++) {
             if(row==column){
             edgesMatrix[row][column] = 0.0;
             }
             else{
             edgesMatrix[row][column] = MAX_VALUE;
             }
            }  
        }
}

public void addvertex(int n){//添加顶点
vertexesArray[vertexSize] = n;
vertexSize++;
}

public void addEdge(int startint endDouble edge) throws Exception{//添加路径
int s = getVertexIndex(start);
int e = getVertexIndex(end);
if(isDirected){
edgesMatrix[s][e] = edge;
}
else{
edgesMatrix[s][e] = edge;
edgesMatrix[e][s] = edge;
}
}

public void changeType(boolean isDirected){//改变类型,默认为无向图,基本可以不管
this.isDirected = isDirected;
}

public void Dijkstra(int startint end) throws Exception{//获取最短路径和时间
int s = getVertexIndex(start);
int e = getVertexIndex(end);
vertexQueue = new HashMap();//存储路径
dist = new Double[maxSize];//存储结果

for(int i = 0;i visited[i] = false;
dist[i] = MAX_VALUE;
}

Queue queue = new linkedList();
queue.add(s);
vertexQueue.put(s queue);
dist[s] = 0.0;
visited[s] = true;

int temp =s;
Iterator(tempe);

queue = vertexQueue.get(e);
        System.out.print(“路径为:“);
        while(!queue.isEmpty()){
         System.out.print(vertexesArray[queue.remove()]);
        }
        System.out.println(“时间为:“+dist[e]);
}

public void Iterator(int tempint e){//宽度遍历
Queue queue = new linkedList();
Queue qVertex = new linkedList();
for(int i=0;i //System.out.print(“1“);
if(edgesMatrix[temp][i] != MAX_VALUE&&dist[temp]+edgesMatrix[temp][i] dist[i] = dist[temp]+edgesMatrix[temp][i];
queue = new linkedList(vertexQueue.get(temp));
queue.add(i);
qVertex.add(i);
if(vertexQueue.containsKey(i)){
vertexQueue.replace(i queue);
}
else{
vertexQueue.put(i queue);
}
}
}
while(!qVertex.isEmpty()){
temp = qVertex.remove();
Iterator(tempe);
}
visited[temp] = true;
}
  
    //获取顶点值在数组里对应的索引  
 

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2017-06-17 12:08  Dijkstra\
     文件         301  2017-06-17 12:08  Dijkstra\.classpath
     文件         384  2017-06-17 12:08  Dijkstra\.project
     目录           0  2017-06-17 12:08  Dijkstra\.settings\
     文件         598  2017-06-17 12:08  Dijkstra\.settings\org.eclipse.jdt.core.prefs
     目录           0  2017-06-17 13:53  Dijkstra\bin\
     文件        4073  2017-06-17 16:16  Dijkstra\bin\GraphByMatrix.class
     文件        1408  2017-06-17 16:12  Dijkstra\bin\Main.class
     目录           0  2017-06-17 13:53  Dijkstra\src\
     文件        3514  2017-06-17 16:16  Dijkstra\src\GraphByMatrix.java
     文件         908  2017-06-17 16:12  Dijkstra\src\Main.java

评论

共有 条评论