org.bbottema.javareflection.util.graph.Dijkstra Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-reflection Show documentation
Show all versions of java-reflection Show documentation
Java Reflection provides a small package with nifty reflection features that will help with finding constructors, methods and value conversions
/*
* Copyright (C) ${project.inceptionYear} Benny Bottema ([email protected])
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.bbottema.javareflection.util.graph;
import java.util.HashSet;
import java.util.LinkedList;
import java.util.Map.Entry;
import java.util.Set;
@SuppressWarnings("unused")
final class Dijkstra {
private Dijkstra() {
}
@SuppressWarnings("WeakerAccess")
public static void findShortestPathToAllOtherNodes(Node startingPoint) {
startingPoint.setCost(0);
Set> settledNodes = new HashSet<>();
Set> unsettledNodes = new HashSet<>();
unsettledNodes.add(startingPoint);
while (unsettledNodes.size() != 0) {
Node currentNode = getLowestDistanceNode(unsettledNodes);
unsettledNodes.remove(currentNode);
for (Entry, Integer> adjacencyPair : currentNode.getToNodes().entrySet()) {
Node adjacentNode = adjacencyPair.getKey();
if (!settledNodes.contains(adjacentNode)) {
Integer edgeWeight = adjacencyPair.getValue();
calculateMinimumDistance(adjacentNode, edgeWeight, currentNode);
unsettledNodes.add(adjacentNode);
}
}
settledNodes.add(currentNode);
}
}
private static void calculateMinimumDistance(Node evaluationNode, Integer edgeWeigh, Node sourceNode) {
if (sourceNode.getCost() + edgeWeigh < evaluationNode.getCost()) {
evaluationNode.setCost(sourceNode.getCost() + edgeWeigh);
LinkedList> shortestPath = new LinkedList<>(sourceNode.getLeastExpensivePath());
shortestPath.add(sourceNode);
evaluationNode.setLeastExpensivePath(shortestPath);
}
}
private static Node getLowestDistanceNode(Set> unsettledNodes) {
Node lowestDistanceNode = null;
int lowestDistance = Integer.MAX_VALUE;
for (Node node : unsettledNodes) {
if (node.getCost() < lowestDistance) {
lowestDistance = node.getCost();
lowestDistanceNode = node;
}
}
return lowestDistanceNode;
}
}