徹底的な調査とこれに基づいた後、これとさらに多くのことが、大きな無向循環加重グラフで最初、2番目、3番目... k番目の最短パスを見つけるために、k個の最短パスアルゴリズムを実装することが提案されました。約 2000 ノード。
ウィキペディアの疑似コードは次のとおりです。
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 shortest path.
for i from 0 to size(A[i]) − 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) 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 that were removed from the graph.
restore edges to Graph;
// Sort the potential k-shortest paths by cost.
B.sort();
// Add the lowest cost path becomes the k-shortest path.
A[k] = B[0];
return A;
主な問題は、このための正しい python スクリプトをまだ作成できなかったことです (エッジを削除して元の場所に正しく配置します)。
def yenksp(graph,source,sink, k):
global distance
"""Determine the shortest path from the source to the sink."""
a = graph.get_shortest_paths(source, sink, weights=distance, mode=ALL, output="vpath")[0]
b = [] #Initialize the heap to store the potential kth shortest path
#for xk in range(1,k):
for xk in range(1,k+1):
#for i in range(0,len(a)-1):
for i in range(0,len(a)):
if i != len(a[:-1])-1:
spurnode = a[i]
rootpath = a[0:i]
#I should remove edges part of the previous shortest paths, but...:
for p in a:
if rootpath == p:
graph.delete_edges(i)
spurpath = graph.get_shortest_paths(spurnode, sink, weights=distance, mode=ALL, output="vpath")[0]
totalpath = rootpath + spurpath
b.append(totalpath)
# should restore the edges
# graph.add_edges([(0,i)]) <- this is definitely not correct.
graph.add_edges(i)
b.sort()
a[k] = b[0]
return a
それは本当に貧弱な試みであり、リスト内のリストのみを返します
私はもう何をしているのかよくわかりません。私はすでにこの問題に非常に必死であり、ここ数日で、これに関する私の見方が 180 度、さらには 1 回も変わりました。私はただの初心者で、最善を尽くしています。助けてください。Networkx の実装も提案できます。
PS 既にここで調査したため、これについては他に有効な方法がない可能性があります。私はすでに多くの提案を受けており、コミュニティには多くの借りがあります。DFS または BFS は機能しません。グラフは巨大です。
編集: Python スクリプトを修正し続けます。一言で言えば、この質問の目的は正しいスクリプトです。