What are the six steps to Prims algorithm (graphically) ?
What are some common errors in doing prims algorithm graphically?
What are the steps to Prims algorithm (tabular)?
What are some common errors when doing Prims Algorithm (tabular)
What is a greedy algorithm?
it maximises the immediate rewards without considering future choices/consequences
Why are the steps for carrying out Kruskal’s algorithm?
What are the common errors in kruskals algorithm?
Why can kruskals algorithm not be used in tabular form?
no way of knowing when cycle will be made
∴ cannot be used by computers
what is a common mistake in dijkstras?
not starting the order of becoming permenant from 1
this is dijkstras not critical path
What are the steps for Dijkstra’s algorithm?
How would you find the shortest route and length from this completed
what is the complexity of kruksals, primms and dijksras?
O (n^^2)
* Dijkstra’s is as a function of number of vertices
* Primms/ Kruksals is a function of the number of edges
What is the shortest distance from A-E and A-F