Girish Mahajan (Editor)

Yen's algorithm

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit
Yen's algorithm

Yen's algorithm computes single-source K-shortest loopless paths for a graph with non-negative edge cost. The algorithm was published by Jin Y. Yen in 1971 and employs any shortest path algorithm to find the best path, then proceeds to find K − 1 deviations of the best path.

Contents

Description

The algorithm can be broken down into two parts, determining the first k-shortest path, A 1 , and then determining all other k-shortest paths. It is assumed that the container A will hold the k-shortest path, whereas the container B , will hold the potential k-shortest paths. To determine A 1 , the shortest path from the source to the sink, any efficient shortest path algorithm can be used.

To find the A k , where k ranges from 2 to K , the algorithm assumes that all paths from A 1 to A k 1 have previously been found. The k iteration can be divided into two processes, finding all the deviations A k i and choosing a minimum length path to become A k . Note that in this iteration, i ranges from 1 to Q k k .

The first process can be further subdivided into three operations, choosing the R k i , finding S k i , and then adding A k i to the container B . The root path, R k i , is chosen by finding the subpath in A k 1 that follows the first i nodes of A j , where j ranges from 1 to k 1 . Then, if a path is found, the cost of edge d i ( i + 1 ) of A j is set to infinity. Next, the spur path, S k i , is found by computing the shortest path from the spur node, node i , to the sink. The removal of previous used edges from ( i ) to ( i + 1 ) ensures that the spur path is different. A k i = R k i + S k i , the addition of the root path and the spur path, is added to B . Next, the edges that were removed, i.e. had their cost set to infinity, are restored to their initial values.

The second process determines a suitable path for A k by finding the path in container B with the lowest cost. This path is removed from container B and inserted into container A and the algorithm continues to the next iteration. Note that if the amount of paths in container B equal or exceed the amount of k-shortest paths that still need to be found, then the necessary paths of container B are added to container A and the algorithm is finished.

Pseudocode

The algorithm assumes that the Dijkstra algorithm is used to find the shortest path between two nodes, but any shortest path algorithm can be used in its place.

function YenKSP(Graph, source, sink, K): // Determine the shortest path from the source to the sink. A[0] = Dijkstra(Graph, source, sink); // Initialize the heap to store the potential kth shortest path. B = []; for k from 1 to K: // The spur node ranges from the first node to the next to last node in the previous k-shortest path. for i from 0 to size(A[k − 1]) − 1: // Spur node is retrieved from the previous k-shortest path, k − 1. spurNode = A[k-1].node(i); // The sequence of nodes from the source to the spur node of the previous k-shortest path. rootPath = A[k-1].nodes(0, i); for each path p in A: if rootPath == p.nodes(0, i): // Remove the links that are part of the previous shortest paths which share the same root path. remove p.edge(i,i + 1) from Graph; for each node rootPathNode in rootPath except spurNode: remove rootPathNode from Graph; // Calculate the spur path from the spur node to the sink. spurPath = Dijkstra(Graph, spurNode, sink); // Entire path is made up of the root path and spur path. totalPath = rootPath + spurPath; // Add the potential k-shortest path to the heap. B.append(totalPath); // Add back the edges and nodes that were removed from the graph. restore edges to Graph; restore nodes in rootPath to Graph; if B is empty: // This handles the case of there being no spur paths, or no spur paths left. // This could happen if the spur paths have already been exhausted (added to A), // or there are no spur paths at all - such as when both the source and sink vertices // lie along a "dead end". break; // Sort the potential k-shortest paths by cost. B.sort(); // Add the lowest cost path becomes the k-shortest path. A[k] = B[0]; B.pop(); return A;

Example

The example uses Yen's K-Shortest Path Algorithm to compute three paths from ( C ) to ( H ) . Dijkstra's algorithm is used to calculate the best path from ( C ) to ( H ) , which is ( C ) ( E ) ( F ) ( H ) with cost 5. This path is appended to container A and becomes the first k-shortest path, A 1 .

Node ( C ) of A 1 becomes the spur node with a root path of itself, R 2 1 = ( C ) . The edge, ( C ) ( E ) , is removed because it coincides with the root path and a path in container A . Dijkstra's algorithm is used to compute the spur path S 2 1 , which is ( C ) ( D ) ( F ) ( H ) , with a cost of 8. A 2 1 = R 2 1 + S 2 1 = ( C ) ( D ) ( F ) ( H ) is added to container B as a potential k-shortest path.

Node ( E ) of A 1 becomes the spur node with R 2 2 = ( C ) ( E ) . The edge, ( E ) ( F ) , is removed because it coincides with the root path and a path in container A . Dijkstra's algorithm is used to compute the spur path S 2 2 , which is ( E ) ( G ) ( H ) , with a cost of 7. A 2 2 = R 2 2 + S 2 2 = ( C ) ( E ) ( G ) ( H ) is added to container B as a potential k-shortest path.

Node ( F ) of A 1 becomes the spur node with a root path, R 2 3 = ( C ) ( E ) ( F ) . The edge, ( F ) ( H ) , is removed because it coincides with the root path and a path in container A . Dijkstra's algorithm is used to compute the spur path S 2 3 , which is ( F ) ( G ) ( H ) , with a cost of 8. A 2 3 = R 2 3 + S 2 3 = ( C ) ( E ) ( F ) ( G ) ( H ) is added to container B as a potential k-shortest path.

Of the three paths in container B, A 2 2 is chosen to become A 2 because it has the lowest cost of 7. This process is continued to the 3rd k-shortest path. However, within this 3rd iteration, note that some spur paths do not exist.And the path that is chosen to become A 3 is ( C ) ( D ) ( F ) ( H ) .

Space complexity

To store the edges of the graph, the shortest path list A , and the potential shortest path list B , N 2 + K N memory addresses are required. At worse case, the every node in the graph has an edge to every other node in the graph, thus N 2 addresses are needed. Only K N addresses are need for both list A and B because at most only K paths will be stored, where it is possible for each path to have N nodes.

Time complexity

The time complexity of Yen's algorithm is dependent on the shortest path algorithm used in the computation of the spur paths, so the Dijkstra algorithm is assumed. Dijkstra's algorithm has a worse case time complexity of O ( N 2 ) , but using a Fibonacci heap it becomes O ( M + N log N ) , where M is the amount of edges in the graph. Since Yen's algorithm makes K l calls to the Dijkstra in computing the spur paths, where l is the length of spur paths. In a condensed graph, the expected value of l is O ( log N ) , while the worst case is N . , the time complexity becomes O ( K N ( M + N log N ) ) .

Improvements

Yen's algorithm can be improved by using a heap to store B , the set of potential k-shortest paths. Using a heap instead of a list will improve the performance of the algorithm, but not the complexity. One method to slightly decrease complexity is to skip the nodes where there are non-existent spur paths. This case is produced when all the spur paths from a spur node have been used in the previous A k . Also, if container B has K k paths of minimum length, in reference to those in container A , then they can be extract and inserted into container A since no shorter paths will be found.

Lawler's modification

Eugene Lawler proposed a modification to Yen's algorithm in which duplicates path are not calculated as opposed to the original algorithm where they are calculated and then discarded when they are found to be duplicates. These duplicates paths result from calculating spur paths of nodes in the root of A k . For instance, A k deviates from A k 1 at some node ( i ) . Any spur path, S k j where j = 0 , , i , that is calculated will be a duplicate because they have already been calculated during the k 1 iteration. Therefore, only spur paths for nodes that were on the spur path of A k 1 must be calculated, i.e. only S k h where h ranges from ( i + 1 ) k 1 to ( Q k ) k 1 . To perform this operation for A k , a record is needed to identify the node where A k 1 branched from A k 2 .

References

Yen's algorithm Wikipedia