Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've implemented the following Prim's Algorithm method. It returns the MST weight. However it seems not to be working for some cases. Can anyone please tell me what I'm doing wrong?

private static int primCalculator(Node source){
int n_steps=0;
boolean[] visited = new boolean[n_nodes]; //A boolean array. The i position is true if the Node with the id i has already been "visited"
int n_visited=0; //Number of nodes already visited
source.min_distance=0; //Sets the initial node min_distance to 0
Node cnode=source;

while(n_visited<n_nodes){
    for(int i=0;i<n_nodes-1;i++){ //Updates every neighbour of the cnode (their min_distance is updated if the distance from the cnode is smaller)
    Link link=cnode.links.get(i);
    Node neighbour=link.destiny;
    if(neighbour.min_distance>link.distance && cnode.previous!=neighbour){
        neighbour.min_distance=link.distance;
        neighbour.previous=cnode;
    }
    }
    visited[cnode.id]=true;
    cnode=getMinNode(visited);
    n_visited++;
}

for(int i=0;i<n_nodes;i++)n_steps+=nodes_list.get(i).min_distance; //Sums every node min_distance and returns it
return n_steps;
}
share|improve this question
Welcome to Stack Overflow! Can you give us more detail about when it's not working? Also, can you elaborate on how your code works and what each piece of code is trying to do? With the comments you have now it's not very easy to see how the code works. – templatetypedef Feb 27 '11 at 3:25
I'm confused about why this is closed? It's not a great question (questioner doesn't give example cases that fail) but "too localized or narrow" doesn't seem to apply. – andersoj Feb 27 '11 at 5:15

closed as too localized by Mitch Wheat, templatetypedef, Robert Harvey Feb 27 '11 at 3:27

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

Which cases do not work?, can you describe source of type Node

share|improve this answer

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