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