C++

Dijkstra’s Algorithm Time Complexity

“Dijkstra’s algorithm looks for the shortest path between any two nodes in a graph. Node is also called a vertex in graph works. A branch in a graph is also called an edge. For simplicity, the program in this article will look for the shortest path between a source vertex and one destination vertex.”

Consider the following towns: A, B, C, D, E, and F connected by roads:

These towns are connected by roads (which can be assumed to be straight). The road length from town A to town B is 4 units; it is not drawn to scale. The road length from town A to town C is 5 units; it is not drawn to scale. The length from town B to town E is 11 units, not drawn to scale. The roads between other towns are similarly indicated.

The towns: A, B, C, D, E, and F are the vertices of a graph. The roads are the edges of the graph. However, this graph will be represented in a mathematical data structure, differently from its geographical layout.

Dijkstra’s algorithm can be used to find the shortest path between a source vertex (say A) and any other vertex. For further simplicity, this article will aim to look for the shortest path from A to E.

There are different paths from A to E, with different lengths, as follows:

A-B-D-F: 4 + 9 + 2 = 15

A-B-E-F: 4 + 7 + 6 = 17

A-B-C-E-F: 4 + 11 + 3 + 6 = 24

A-B-C-E-D-F: 4 + 11 + 3 + 13 + 2 = 33

A-B-D-E-F: 4 + 9 + 13 + 6 = 32

A-B-E-D-F: 4 + 7 + 13 + 2 = 26

A-C-E-F: 5 + 3 + 6 = 14

A-C-B-D-F: 5 + 11 + 9 + 2 = 27

A-C-B-E-F: 5 + 11 + 7 + 6 = 29

A-C-B-E-F: 5 + 11 + 7 + 6 = 29

A-C-E-D-F: 5 + 3 + 13 + 2 = 14

A-C-B-E-D-F: 5 + 11 + 7 + 13 + 2 = 38

From this listing, the shortest path is A-C-E-F, with a total length of 14 units.

The main aim of this article is to find the running time Dijkstra’s algorithm takes to obtain the shortest path from A to E. The time will not be given in seconds or minutes. It is the relative total execution time, called Time Complexity, that will be given. C++ coding is provided as well.

Graph to Use

The time complexity (relative running time) depends mainly on the type of mathematical graph used to represent the geographical layout. It also depends on the algorithm (another kind of algorithm) used to sort the neighboring vertices of each vertex in the overall algorithm (Dijkstra’s algorithm). The sorting of neighboring vertices is not addressed in this article.

The mathematical graph chosen for this article is called Adjacency Matrix. It is:

The row headers are the town names from A to F. The column headers are the same town names from A to F. Each entry is the length of a road from one town to the next. The length of a road from one town to itself is zero. The length of a road from one town to another, after skipping one or more towns, is also zero. Only direct roads are considered. Each entry is located, first by row and then by column. Again, each entry is the length of one road, without skipping a town, and not to the town itself. This matrix is a mathematical representation of the geographical network given above.

So, the matrix consists of edges, with the row and column headers of the same vertices. The matrix is the main structure needed in the program. Two other vectors (arrays) are used in this basic program.

Dijkstra’s Algorithm

Dijkstra’s algorithm looks for the shortest path between any two vertices in a graph (network). The above matrix is the graph, which corresponds to the above geographical network. For simplicity, the program in this article will look for the shortest path between a source vertex and one destination vertex. Precisely, the program will look for the shortest path from the source vertex, A, to the destination vertex, F.

The algorithm, as relevant to this task, is as follows:

– All vertices are marked as unvisited. At this point, a set of all unvisited vertices are created.

– Assign a tentative path length value to all vertices: the path length from source to the source is assigned a value of zero; the path length from source to any other vertex is assigned the one value of infinity, i.e., a value that is higher than the highest path possible, in the graph. The value of each vertex would be changed at least once, from a high value to a lower value, as the algorithm continues. Possible vertices for the complete shortest path will be focused upon, beginning from the source vertex (A). The vertex with the focus is called the current vertex. The current vertex has neighbors, better visualized from the actual network (geographical layout) above.

– There is the current vertex, and there is the visited vertex. In fact, there would be more than one visited vertex in a chain as the algorithm continues. All previous vertices considered visited are in the shortest complete path that is being developed, beginning from the source. The path length of the last visited vertex is known (should be known). A vertex is declared visited when its path length is confirmed. The visited vertex gives the least path length from the source so far, as the algorithm is in progress. The unvisited neighbors of the current vertex, except its immediate previous visited neighbor, have tentative values (path lengths from the source), some of which may still be infinity (very high value). For each unvisited neighbor and the current vertex, a new tentative path length is calculated as follows: the path length of the previously visited vertex, plus the edge length to the current vertex, plus the length of the edge from the current vertex, to the unvisited neighbor. If this result is less than what was there, as the tentative path length from the source to the unvisited neighbor of the current vertex, then this calculated value becomes the new tentative value for the neighbor of the current vertex. That is, the new tentative path value for an unvisited vertex is calculated through the current vertex from the previously visited vertex.

– There can be more than one current vertices. When all the neighbors of each current vertex have been accessed and given new appropriate tentative path lengths, the current vertex with the least path length from the source (least value) is considered visited. Since it had the least value, its least value is confirmed as the shortest part-path length so far. The previously visited vertex is removed from the unvisited vertex set. A visited vertex will never be checked again. Any visits after would have a greater path length.

– The previous two steps are repeated, in order, for any next current vertex that becomes a visited vertex. This repetition continues until the destination vertex is reached. The destination vertex can be any vertex after the source vertex. However, for simplicity, the last vertex, F of the above network, has been chosen as the destination vertex for this article.

– As the algorithm progresses, each parent (previously visited) vertex, and each child (next visited) vertex, of the shortest path should be recorded in case the shortest path, by vertices, as well as the shortest path by length, is required (asked for). When the destination vertex is reached and visited, the complete shortest path can be traced backward if the path by vertices is needed. As for the path length, it was calculated as the algorithm progressed.

Illustration Dijkstra’s Algorithm

The above road

network is used to illustrate Dijkstra’s algorithm. It is re-displayed below for easy reference.

It begins at the source, “A” with a path length of zero. “A” is considered as visited and removed from the unvisited list (set). “A” is sent to a visited list in case the path by vertices will be required.

The path lengths from A to B are:

A-B = 4

A-C-B = 5 + 11 = 16

Between 4, 16, and infinity (that was there), 4 is the least. So, B is given the tentative value of 4 as path length.

The path lengths from A to C are:

A-C = 5

A-B-C = 4 + 11 = 15

Between 5, 15, and infinity (that was there), 5 is the least. So, C is given the tentative value of 5 as path length.

B and C were the unvisited neighbors of A. Currently, each has a tentative path length. Between B and C, a vertex must be chosen contribute to the final overall path. B and C also have neighbors.

The unvisited neighbors of B are D, E, and C, with tentative infinite lengths. The unvisited neighbors of C are B and E with tentative infinite lengths. A neighbor has one direct edge from the vertex in question.

The path length calculated from A to D, through B is:

A-B-D = 4 + 9 = 13

The path length calculated from A to E, through B is:

A-B-E = 4 + 7 = 11

The path length calculated from A to C, through B is:

A-B-C = 4 + 11 = 15

Those are the path lengths through B to B’s neighbors, from the visited vertex, “A”. The tentative path lengths through C should also be determined.

The path length calculated from A to B, through C is:

A-C-B = 5 + 11= 16

The path length calculated from A to E through C is:

A-C-E = 5 + 3 = 8

Those are the path lengths through C to C’s neighbors, from the visited vertex, “A”.

All the tentative calculated part-path lengths so far are:

A-B-D = 4 + 9 = 13

A-B-E = 4 + 7 = 11

A-B-C = 4 + 11 = 15

A-C-B = 5 + 11= 16

A-C-E = 5 + 3 = 8

The shortest of these part-path lengths is:

A-C-E = 5 + 3 = 8

So the vertex, C, is chosen for the way forward. This is the next visited vertex. Any possible path through B is abandoned. C is then considered visited. The vertex C is removed from the unvisited list. C is sent to the visited list (to be after A).

C should have unvisited neighbors with tentative path lengths. In this case, it is B and E. B has neighbors with infinite path lengths, which are D, and E. E has neighbors with infinite path lengths, which are D and F. In order to choose the next visited node, the tentative part-path lengths from C through B and E have to be calculated. The calculations are:

A-C-B-D = 5 + 11 + 9

= 16 + 9 = 25

A-C-B-E = 5 + 11 + 7

= 16 + 7 = 23

A-C-E-D = 5 + 3 + 13

= 8 + 13 = 21

A-C-E-F = 5 + 3 + 6

= 8 + 6 = 14

The shortest for these part-paths is:

A-C-E-F = 8 + 6 = 14

At this point, E is the way forward. This is the next visited vertex. Any possible path through D is abandoned. E is removed from the unvisited list and added to the visited list (to be after C).

E has unvisited neighbors with tentative path lengths. In this case, it is D and F. If F had unvisited neighbors, their tentative path lengths from “A”, the source, should have been infinity. Now, the length from F to nothing is 0. In order to choose the next visited node (vertex), the tentative part-path lengths from E through D and E through F have to be calculated. The calculations are:

A-C-E-D-F = 5 + 3 + 13 + 2

= 8 + 15 = 23

A-C-E-F- = 5 + 3 + 6 + 0

= 14 + 0 = 14

The shortest of these part-path lengths is:

A-C-E-F- = 14

At this point, F is the way forward. It is considered visited. F is removed from the unvisited list and added to the visited list (to be after E).

F is the destination. And so, the shortest path length from source, A, to destination, F, is 14. The vertices and their order in the visited list should be A-C-E-F. This is the forward shortest path by vertices. To obtain the reverse shortest path by vertices, read the list backward.

C++ Coding

The Graph

The graph for the network is a two-dimensional array. It is:

int G[V][V] = { {0,4,5,0,0,0},

{4,0,11,9,7,0},

{5,11,0,0,3,0},

{0,9,0,0,13,2},

{0,7,3,13,0,6},

{0,0,0,2,6,0} };

It should be coded in the C++ main function. Each entry is the length of the edge from one vertex, read-by-rows, to the next vertex, read-by-columns. Such a value is not for more than one vertex pair.

Vertices as Numbers

For convenience, the vertices will be identified by numbers, using ASCII coding, as follows:

A is 65

B is 66

C is 67

D is 68

E is 69

F is 70

A is 0 + 65 = 65

B is 1 + 65 = 65

C is 2 + 65 = 65

D is 3 + 65 = 65

E is 4 + 65 = 65

F is 5 + 65 = 65

The coding values for A, B, C, D, E, and F are as follows:

A = 0

B = 1

C = 2

D = 3

E = 4

F = 5

65 will be added to each of these numbers to obtain the corresponding ASCII number, from which the corresponding letter will be obtained.

Beginning of Program

The beginning of the program is:

    #include <iostream>

    #include <vector>

    using namespace std;

    int INT_MAX = +2'147'483'647;  //infinity
    #define V 6 // Vertex Number in G
    int shortestLength = INT_MAX;

    vector unvisited = {0, 1, 2, 3, 4, 5};
    vectorvisited;

The value for infinity chosen by the programmer is 2147483647. The number of vertices, V (in uppercase), is defined (assigned) as 6. The elements of the unvisited vector (array) are A, B, C, D, E, and F, as 0, 1, 2, 3, 4, 5, corresponding to the ASCII code numbers 65, 66, 67, 68, 69, 70. This order, in this case, is not necessarily a predetermined, sorted order. Visited vertices will be pushed into the visited vector in the order discovered by the algorithm, beginning with the source vertex.

The getNeighbors() Function

This function obtains all the neighbors ahead of a vertex, beginning from just after the previously visited related vertex. The function code is:

    vectorgetNeighbors (int graph[V][V], int vIndx, int prevVisitedIndx) {
        vectorneighbors;
        for (int j=prevVisitedIndx+1; j<V; j++) {
            if (graph[vIndx][j] != 0)
neighbors.push_back(j);
        }
        return neighbors;
    }

The dijkstra() Function

After the source index (vertex) has been considered by the program, the dijkstra() function goes into action recursively until the destination index (vertex) is considered. The function code is:

    void dijkstra (int graph[V][V], int visitedIdx, int visitLength) {
        int visitedIndx = visitedIdx;
        int newVisitedIndx = V;
        int minLength = INT_MAX;
        int visitedLength;
        int tentLength1 = 0;
        vectorvisitedNBs = getNeighbors(graph, visitedIndx, visitedIdx);

        for (int i = 0; i<visitedNBs.size(); i++) {
            tentLength1 = visitLength + graph[visitedIdx][visitedNBs[i]];
            vectorcurrentNBs = getNeighbors(graph, visitedNBs[i], visitedIdx);
            if (currentNBs.size() != 0) {
                for (int j=0; j <currentNBs.size(); j++) {
                    int tentLength2 = tentLength1 + graph[visitedNBs[i]][currentNBs[j]];
                    if (tentLength2 <minLength) {
visitedLength = tentLength1;  //confirmed, if ends up to be least
newVisitedIndx = visitedNBs[i];
                    }
                }
            }
            else {
visitedLength = tentLength1;  //confirmed
newVisitedIndx = visitedNBs[i];
            }
        }

visitedIndx = newVisitedIndx;
        unvisited[visitedIndx] = -1;
visited.push_back(visitedIndx);
shortestLength = visitedLength;

        if (visitedIndx< V -1)
dijkstra(graph, visitedIndx, visitedLength);
    }

The startDijkstra() Function

The dijkstra’s algorithm starts with this function to handle the source code situation. The function code is:

    void startDijkstra (int graph[V][V], int srcVIdx) {
        int visitedIndx = srcVIdx;
        unvisited[visitedIndx] = -1;
visited.push_back(visitedIndx);
        int visitedLength = 0;

dijkstra(graph, visitedIndx, visitedLength);
    }

The above code segments can be assembled in the order given to form the program.

The C++ main Function

A suitable C++ main function is:

    int main(int argc, char **argv)
    {
        int G[V][V] = { {0,4,5,0,0,0},
                        {4,0,11,9,7,0},
                        {5,11,0,0,3,0},
                        {0,9,0,0,13,2},
                        {0,7,3,13,0,6},
                        {0,0,0,2,6,0} };

        int sourceVertex = 0;
startDijkstra(G, sourceVertex);

cout<<shortestLength<<endl;
        for (int i=0; i<visited.size(); i++)
cout<< (char)(visited[i] + 65) << ' ';
cout<<endl;

        return 0;
    }

Conclusion

Time Complexity is the relative running time. Assuming that the sorting of the vertices (neighbors) is good, the above program is said to have the following time complexity:

O((|E| + |V|)log|V|)

where |E| is the number of edges, |V| is the number of vertices, and a log is log2. The big-O with its brackets, () is a way to indicate that the expression in the parenthesis is time complexity (relative running time).

The worst-case time complexity for Dijkstra’s algorithm is: O(|V|2)
[/cc]

About the author

Chrysanthus Forcha

Discoverer of mathematics Integration from First Principles and related series. Master’s Degree in Technical Education, specializing in Electronics and Computer Software. BSc Electronics. I also have knowledge and experience at the Master’s level in Computing and Telecommunications. Out of 20,000 writers, I was the 37th best writer at devarticles.com. I have been working in these fields for more than 10 years.