
org.psjava.goods.GoodSingleSourceShortestPath Maven / Gradle / Ivy
package org.psjava.goods;
import org.psjava.algo.graph.shortestpath.Dijkstra;
import org.psjava.algo.graph.shortestpath.SingleSourceShortestPath;
import org.psjava.ds.heap.BinaryHeapFactory;
public class GoodSingleSourceShortestPath {
public static SingleSourceShortestPath getInstance() {
return new Dijkstra(new BinaryHeapFactory());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy