Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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());
}

}
share|improve this question
2  
Missing stadt attribute, Laden and Strasse class. Please post them. – Aubin Oct 21 '12 at 12:59
Sorry.. Actually they are the attributes that I have named for the nodes and edges, I forgot to change them. I edited the text now and thank you for your time!! – elsa Oct 21 '12 at 13:55
Please post Graph, Node and Edge classes. distance attribute isn't used. Add traces to show runtime execution, step by step. – Aubin Oct 21 '12 at 14:01
What is the problem you are having and trying to solve? Assuming that your GraphConstants.INFINITY is -1 you almost have all the conditions you describe. Except that when you stop the algorithm when you find a new, shorter distance, then you break Dijkstra's algorithm. – Jochen Oct 21 '12 at 14:32
I need to modify it, if I go from the startpoint to the next node through an edge the difference edge cost-node cost should be smaller than 0. Maybe through this example it could get clearer: You are at the start node and need to go to the next open store to buy a pack of cigarettes, but the stores close in different times and soon.. so you have to find the shortest path to the closest open store.. the remaining time of the store is the cost of a node, the time you need to go to a store is the cost of the edge.. – elsa Oct 21 '12 at 14:36
show 4 more comments

closed as not a real question by artbristol, Andrew Barber, user714965, Wug, djechlin Oct 22 '12 at 21:17

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

Browse other questions tagged or ask your own question.