vote up 0 vote down star
2

I'm trying build a method which returns the shortest path from one node to another in an unweighted graph. I considered the use of Dijkstra's but this seems a bit overkill since I only want one pair. Instead I have implemented a breadth-first search, but the trouble is that my returning list contains some of the nodes that I don't want - how can I modify my code to achieve my goal?

public List<Node> getDirections(Node start, Node finish){
    List<Node> directions = new LinkedList<Node>();
    Queue<Node> q = new LinkedList<Node>();
    Node current = start;
    q.add(current);
    while(!q.isEmpty()){
        current = q.remove();
        directions.add(current);
        if (current.equals(finish)){
            break;
        }else{
            for(Node node : current.getOutNodes()){
                if(!q.contains(node)){
                    q.add(node);
                }
            }
        }
    }
    if (!current.equals(finish)){
        System.out.println("can't reach destination");
    }
    return directions;
}
flag

why dont you NOT want some of those nodes? – mkoryak Oct 16 at 17:39
not all of them belong to a single shortest path route – Robert Oct 16 at 17:40
does class Node override equals and hashcode correctly? – mkoryak Oct 16 at 17:40
When I was doing something like this on a 2D grid I found the A* (A Star) algorithm easier to understand. – Malfist Oct 16 at 17:43
I read somewhere that breadth-first is a specialisation of A*, but I didn't really understand it when reading about it... – Robert Oct 16 at 17:45
show 1 more comment

4 Answers

vote up 1 vote down check

Actually your code will not finish in cyclic graphs, consider graph 1 -> 2 -> 1. You must have some array where you can flag which node's you've visited already. And also for each node you can save previous nodes, from which you came. So here is correct code:

private Map<Node, Boolean>> vis = new HashMap<Node, Boolean>();

private Map<Node, Node> prev = new HashMap<Node, Node>();

public List getDirections(Node start, Node finish){
    List directions = new LinkedList();
    Queue q = new LinkedList();
    Node current = start;
    q.add(current);
    vis.put(current, true);
    while(!q.isEmpty()){
        current = q.remove();
        if (current.equals(finish)){
            break;
        }else{
            for(Node node : current.getOutNodes()){
                if(!vis.contains(node)){
                    q.add(node);
                    vis.put(node, true);
                    prev.put(node, current);
                }
            }
        }
    }
    if (!current.equals(finish)){
        System.out.println("can't reach destination");
    }
    for(Node node = finish; node != null; node = prev.get(node)) {
        directions.add(node);
    }
    directions.reverse();
    return directions;
}
link|flag
you mean vis.get(node) == null of course otherwise there is a null pointer exception – Robert Oct 16 at 18:20
yep, I've changed it already with contains method. I've written that code here without any IDE, so there might be some typos :) – giolekva Oct 16 at 18:22
vote up 0 vote down

You must include the parent node to each node when you put them on your queue. Then you can just recursively read the path from that list.

Say you want to find the shortest path from A to D in this Graph:

     /B------C------D
   /                |
 A                 /
   \             /
     \E---------

Each time you enqueue a node, keep track of the way you got here. So in step 1 B(A) E(A) is put on the queue. In step two B gets dequeued and C(B) is put on the queue etc. Its then easy to find your way back again, by just recursing "backwards".

Best way is probably to make an array as long as there are nodes and keep the links there, (which is whats usually done in ie. Dijkstra's).

link|flag
vote up 1 vote down

It is really no simpler to get the answer for just one pair than for all the pairs. The usual way to calculate a shortest path is to start like you do, but make a note whenever you encounter a new node and record the previous node on the path. Then, when you reach the target node, you can follow the backlinks to the source and get the path. So, remove the directions.add(current) from the loop, and add code something like the following

Map<Node,Node> backlinks = new HashMap<Node,Node>();

in the beginning and then in the loop

if (!backlinks.containsKey(node)) {
    backlinks.add(node, current);
    q.add(node);
}

and then in the end, just construct the directions list in backwards using the backlinks map.

link|flag
vote up 0 vote down

Every time through your loop, you call

directions.Add(current);

Instead, you should move that to a place where you really know you want that entry.

link|flag
how can it know if it is appropriate to add it or not? – Robert Oct 16 at 17:44

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.