Dijkstra algorithm apply on the graph for finding the single source shortest path.
A directed graph with positive edge lengths, and returns the length of the shortest cycle in the graph and the graph is acyclic, which take time at most
So, here the vertex A is the source vertex. now take a minheap as a data structure for evaluate single source shortest path between the source and the destination.
From A the distance of A is zero and take the distance of vertex A from each and every vertex is infinity.
Theinput graph is represented either as an adjacency matrix or with adjacency lists is used to stored the vertices of the graph.
Now take A as the first vertex and evaluate the weight towards each vertex.
And choose the next vertex from the vertices which have minimum weight and select that node as the second vertex.
Then again evaluate the distance of it from every vertex and as get the minimum weight of the node and consider it as the main node.
Through this the series of vertex are arises.

here the vertex A is the source vertex. now take a minheap as a data structure for evaluate single source shortest path between the source and the destination.
From A the distance of A is zero and take the distance of vertex A from each and every vertices is infinity.
Select every vertex one by one and put it into the min heap as a data structure one by one as shown in the figure.

Fig: Adjacency list of the given graph
Hence, the shortest distance from the vertex A to vertex D is 13 .
And the graph will take time.