17 line
387 B
Java
17 line
387 B
Java
package org.insa.algo.shortestpath;
|
|
|
|
public class DijkstraAlgorithm extends ShortestPathAlgorithm {
|
|
|
|
public DijkstraAlgorithm(ShortestPathData data) {
|
|
super(data);
|
|
}
|
|
|
|
@Override
|
|
protected ShortestPathSolution doRun() {
|
|
ShortestPathData data = getInputData();
|
|
ShortestPathSolution solution = null;
|
|
// TODO:
|
|
return solution;
|
|
}
|
|
|
|
}
|