I have struggled a while with graphs and known algorithm used on graphs, I have successfully developed a project-planner program in Java that uses topological sorting to look for cycles and Dijkstra's algorithm to find the shortest path, but in project-planning Dijkstra's algorithm just gives the shortest path without visiting all tasks. Project planning tool is like a traveling salesman. I need to find the minimal spanning tree, and want to use Prims algorithm, but after many hours reading, programming and failing, I cant get my implementations of Prims algorithm to work. I have read that Prims algorithm and Dijkstra's algorithm is almost the same.
Can someone please help me on my way to get Prims algorithm to work in my program ? I have deleted my attempt on Prims and is totally blank.
public class Task {
private int id;
private String name;
private int time;
private int manpower;
int cntPredecessors;
private LinkedList<Edge> outEdges;
private LinkedList<Edge> inEdges;
Task prevTask = null;
int scratch = 0; //Extra variable used in Dijstras algorithm
int dist = Graph.INFINITY;
Task(int id) {
this.id = id;
this.cntPredecessors = 0;
outEdges = new LinkedList<Edge>();
inEdges = new LinkedList<Edge>();
}
public void reset() {
cntPredecessors = inEdges.size();
dist = Graph.INFINITY;
prevTask = null;
scratch = 0;
}
}
public class Edge {
private Task from;
private Task to;
public Edge(Task fromTask, Task toTask) {
this.from = fromTask;;
this.to = toTask;
}
}
public class Path implements Comparable<Path> {
public Task dest;
public int time;
Path(Task task, int time) {
dest = task;
time = time;
}
public int compareTo(Path rhs) {
int otherTime = rhs.time;
return time < otherTime ? -1 : time > otherTime ? 1 : 0;
}
}
public class Graph {
private HashMap<Integer, Task> tasks;
public static final int INFINITY = Integer.MAX_VALUE;
Graph() {
tasks = new HashMap<Integer, Task>();
}
public void djikstra(int startName) {
PriorityQueue<Path> pq = new PriorityQueue<Path>();
Task start = tasks.get(startName);
if(start == null) {
throw new NoSuchElementException("Start vertex not found");
}
clearAll();
pq.add(new Path(start, 0));
start.dist = 0;
int nodesSeen = 0;
while(!pq.isEmpty() && nodesSeen < tasks.size()) {
Path current = pq.remove(); //Returns and removes object from pq.
Task task = current.dest;
if(task.scratch != 0) {
continue;
}
task.scratch = 1;
nodesSeen++;
for(Edge edges: task.getOutEdges()) {
Task toTask = edges.getTo();//Task som oppgaven peker p.
int time = task.getTime(); //Veiens kost
if(time < 0) {
System.err.println("Negativ edges!!");
}
if(toTask.dist > task.dist + time) {
toTask.dist = task.getTime() + time;
toTask.prevTask = task;
pq.add(new Path(toTask, toTask.getTime()));
}
}
}
}
}