I want to integrate to my dijkstra alg node costs according to the following conditions:
- if the node cost is -1 search next node
- if the node cost - summ of path < 0 search next node
- if the node cost - summ of path >= 0 stopp the alg.
and here is my code:
import java.util.Hashtable;
public class AlgDijkstra {
private Graph graph;
private NodePriorityQueue priorityQ = new NodePriorityQueue();
private Hashtable <Node,Integer> distance = new Hashtable<Node, Integer>();
public AlgDijkstra (Node g){
this.graph = g;
this.graph.getStartNode().setDistance(0);
this.priorityQ.add(this.graph.getAllNodes());
}
public void go(){
while (this.priorityQ.hasMore()){
Node n = this.priorityQ.remove();
for (Edge e: n.getEdge()){
Laden adjNode = e.getNextNode();
Integer newPossiblePathCost = e.getCost()+n.getDistance();
if (newPossiblePathCost<adjNode.getDistance()){
adjNode.setDistance(newPossiblePathCost);
this.priorityQ.updateNodeDistance(adjNode);
}
}
}
}
}
// Node
public class Node implements Comparable<Node> {
private static int nodeCount=0;
private int zeit;
private int ID;
private ArrayList<Edge> outGoingEdges = new ArrayList<Edge>();
private boolean visited;
private Integer distance = GraphConstants.INFINITY;
public Node(int zeit) {
this.init(zeit);
}
private void init(int Zeit){
this.zeit = Zeit;
this.ID = Node.nodeCount++;
this.visited = false;
}
public void setVisited(boolean Visited) {
this.visited = Visited;
}
public void AddEdge(Node start, Node dest, int cost) {
this.outGoingEdges.add(new Edge(start,dest,cost));
}
public ArrayList<Edge> getEdge() {
return outGoingEdges;
}
public int getRestzeit(){ // Restzeit is the cost of the node
return zeit;
}
public void setRestzeit(int Zeit){
this.zeit=Zeit;
}
public ArrayList<Edge> getOutGoingEdge() {
return outGoingEdges;
}
public int getID(){
return ID;
}
public int compareTo(Laden arg0) {
return this.distance.compareTo(arg0.getDistance());
}
public int getDistance(){
return distance;
}
public void setDistance(int i) {
this.distance=i;
// TODO Auto-generated method stub
}
}
// Edge
public class Edge {
private Node Node1;
private Node Node2;
private int cost;
public Edge(Node node1, Node node2, int Cost){
this.Node1=node1;
this.Node2=node2;
this.cost=Cost;
}
public Node getNode1(){
return Node1;
}
public Laden getNode2(){
return Node2;
}
public int getCost(){
return cost;
}
}
// Graph
public class Graph {
private Node startnode;
private ArrayList <Node> allNodes = new ArrayList<Node>();
private ArrayList <Integer> visitedNodes = new ArrayList<Integer>();
public Graph(Node startnode){ //A[],B[],?
this.startnode = startnode;
this.discoverGraph();
}
public Laden getStartNode(){
return this.startnode;
}
public ArrayList<Node> getAllNodes(){
return this.allNodes;
}
private void discoverGraph(){
allNodes.add(this.startnode);
visit(startnode);
for (Edge e : this.startnode.getEdge()){
if (!isVisited(e.getNode2())){
bfs(e.getNode2());
}
}
}
private void bfs(Node n){
visit(n);
this.allNodes.add(n);
for (Edge e: n.getEdge()){
if (!isVisited(e.getNodez2())){
bfs(e.getNode2());
}
}
}
private boolean isVisited(Laden n){
return visitedNodes.contains(n.getID());
}
private void visit(Node n){
this.visitedNodes.add(n.getID());
}
}