Parallel all-pairs shortest path algorithm: Difference between revisions

Content deleted Content added
fix an unjustified and highly unbelievable claim by replacing "graph theory" (a wide area of mathematics or combinatorics) with "algorithmic graph theory"
Ilstam (talk | contribs)
fixed a function name
Line 37:
 
The runtime of <code>DijkstraSSSP</code> is <math>O(|V|^2)</math> as we expect the graph to be represented using an [[adjacency matrix]].
Therefore <code>DijkstraSSSPDijkstraAPSP</code> has a total sequential runtime of <math>O(|V|^3)</math>.
 
===Parallelization for up to |''V''| processors===