vote up 0 vote down star

Prims algorithm is a priority first search algorithm. If this is the case, why does Sedgewick refer to the MST algorithm for a sparse graph as the priority first search algorithm but the MST algorithm for a dense graph is called Prim's algorithm?

The complexity differences between the two only arise because (a) the properties of sparse vs. dense graphs, (b) the data structure used to implement the priority queue in each algorithm (min heap vs. array) and (c) the representation of the graph itself (adjacency list vs. adjacency matrix).

flag

1 Answer

vote up 1 vote down

Please rephrase for clarity and add details about which algorithms you're talking about. (e.g. MST is a problem not an algorithm).

link|flag

Your Answer

Get an OpenID
or

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