词条 | Yen's algorithm | ||||||||||||||||
释义 |
AlgorithmTerminology and notation
DescriptionThe algorithm can be broken down into two parts, determining the first k-shortest path, , and then determining all other k-shortest paths. It is assumed that the container will hold the k-shortest path, whereas the container , will hold the potential k-shortest paths. To determine , the shortest path from the source to the sink, any efficient shortest path algorithm can be used. To find the , where ranges from to , the algorithm assumes that all paths from to have previously been found. The iteration can be divided into two processes, finding all the deviations and choosing a minimum length path to become . Note that in this iteration, ranges from to . The first process can be further subdivided into three operations, choosing the , finding , and then adding to the container . The root path, , is chosen by finding the subpath in that follows the first nodes of , where ranges from to . Then, if a path is found, the cost of edge of is set to infinity. Next, the spur path, , is found by computing the shortest path from the spur node, node , to the sink. The removal of previous used edges from to ensures that the spur path is different. , the addition of the root path and the spur path, is added to . 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 by finding the path in container with the lowest cost. This path is removed from container and inserted into container and the algorithm continues to the next iteration. PseudocodeThe 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 set 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]) − 2: ''// 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; ExampleThe example uses Yen's K-Shortest Path Algorithm to compute three paths from to . Dijkstra's algorithm is used to calculate the best path from to , which is with cost 5. This path is appended to container and becomes the first k-shortest path, . Node of becomes the spur node with a root path of itself, . The edge, , is removed because it coincides with the root path and a path in container . Dijkstra's algorithm is used to compute the spur path , which is , with a cost of 8. is added to container as a potential k-shortest path. Node of becomes the spur node with . The edge, , is removed because it coincides with the root path and a path in container . Dijkstra's algorithm is used to compute the spur path , which is , with a cost of 7. is added to container as a potential k-shortest path. Node of becomes the spur node with a root path, . The edge, , is removed because it coincides with the root path and a path in container . Dijkstra's algorithm is used to compute the spur path , which is , with a cost of 8. is added to container as a potential k-shortest path. Of the three paths in container B, is chosen to become 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 is . FeaturesSpace complexityTo store the edges of the graph, the shortest path list , and the potential shortest path list , memory addresses are required.[2] At worse case, the every node in the graph has an edge to every other node in the graph, thus addresses are needed. Only addresses are need for both list and because at most only paths will be stored,[2] where it is possible for each path to have nodes. Time complexityThe 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 , but using a Fibonacci heap it becomes ,[3] where is the amount of edges in the graph. Since Yen's algorithm makes calls to the Dijkstra in computing the spur paths, where is the length of spur paths. In a condensed graph, the expected value of is , while the worst case is . , the time complexity becomes . [4]ImprovementsYen's algorithm can be improved by using a heap to store , 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.[5] 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 . Also, if container has paths of minimum length, in reference to those in container , then they can be extract and inserted into container since no shorter paths will be found. Lawler's modificationEugene 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.[6] These duplicates paths result from calculating spur paths of nodes in the root of . For instance, deviates from at some node . Any spur path, where , that is calculated will be a duplicate because they have already been calculated during the iteration. Therefore, only spur paths for nodes that were on the spur path of must be calculated, i.e. only where ranges from to . To perform this operation for , a record is needed to identify the node where branched from . See also
References1. ^{{cite journal|last=Yen|first=Jin Y.|mr = 253822|title=An algorithm for finding shortest routes from all source nodes to a given destination in general networks|journal=Quarterly of Applied Mathematics|year=1970|volume=27|issue=4|pages=526–530}} 2. ^1 2 {{cite journal|last=Yen|first=Jin Y.|title=Finding the k Shortest Loopless Paths in a Network|journal=Management Science|date=Jul 1971|volume=17|issue=11|pages=712–716|jstor=2629312|doi=10.1287/mnsc.17.11.712}} 3. ^{{cite conference|first1=Michael Lawrence|last1=Fredman|authorlink1=Michael Fredman|first2=Robert E.|last2=Tarjan|authorlink2=Robert Tarjan|title=Fibonacci heaps and their uses in improved network optimization algorithms|conference=25th Annual Symposium on Foundations of Computer Science|year=1984|publisher=IEEE|pages=338–346|ref=harv|doi=10.1109/SFCS.1984.715934}} 4. ^{{cite book|last=Bouillet | first=Eric |title=Path routing in mesh optical networks|year=2007|publisher=John Wiley & Sons|location=Chichester, England|isbn=9780470032985}} 5. ^{{cite book|last1=Brander|first1=Andrew William|first2=Mark C. |last2=Sinclair|title=A comparative study of k-shortest path algorithms.|publisher=Department of Electronic Systems Engineering, University of Essex, 1995}} 6. ^{{cite journal|last=Lawler|first=EL|title=A procedure for computing the k best solutions to discrete optimization problems and its application to the shortest path problem.|journal=Management Science, Theory Series|year=1972|volume=18|pages=401–405|doi=10.1287/mnsc.18.7.401}} External links
3 : Graph algorithms|Polynomial-time problems|Articles with example pseudocode |
||||||||||||||||
随便看 |
|
开放百科全书收录14589846条英语、德语、日语等多语种百科知识,基本涵盖了大多数领域的百科知识,是一部内容自由、开放的电子版国际百科全书。