我對我的K最短路徑算法有某些問題。該代碼給出:K最短路徑Python不工作
def K_shortest_Paths(graph,S,T,K=4):
'''Initialize Variables Accordingly'''
B = {}
P = set()
count = {}
for U in graph.keys():
count[U] = 0
B[S] = 0
'''Algorithm Starts'''
while(len(B)>=1 and count[T]<K):
PU = min(B,key=lambda x:B[x])
cost = B[PU]
U = PU[len(PU)-1]
del B[PU]
count[U] += 1
if U==T:
P.add(PU)
if count[U]<=K:
V = graph[U].keys()
for v in V:
if v not in PU:
PV = PU+v
B[PV] = cost+1
return P
這相當於https://en.wikipedia.org/wiki/K_shortest_path_routing它提供的僞碼實現。該圖給出爲: 現在,它運行良好,如果我有起始節點S < 10和終止節點T < 10,但與S和T> 10,它返回一個空集,而它應該返回路徑。請注意,我無法使用Networkx庫。我只需要使用基本庫在Python
此外,爲了生成圖表的代碼是這樣的:
def create_dictionary(graph):
D = {}
for item in graph.items():
temp = {}
connected = list(item[1])
key = item[0]
for V in connected:
temp[str(V)] = 1
D[str(key)] = temp
return D
def gen_p_graph(nodes,prob):
if prob>1:
er='error'
return er
graph_matrix=np.zeros([nodes,nodes])
num_of_connections=int(((nodes * (nodes-1)) * prob )/2)
num_list_row=list(range(nodes-1))
while(np.sum(np.triu(graph_matrix))!=num_of_connections):
row_num=random.choice(num_list_row)
num_list_col=(list(range(row_num+1,nodes)))
col_num=random.choice(num_list_col)
if graph_matrix[row_num,col_num]==0:
graph_matrix[row_num,col_num]=1
graph_matrix[col_num,row_num]=1
#create dictionary
df=pd.DataFrame(np.argwhere(graph_matrix==1))
arr=np.unique(df.iloc[:,0])
dct={}
for i in range(graph_matrix.shape[0]):
dct[str(i)]=set()
for val in arr:
dct[str(val)].update(df.loc[df.iloc[:,0]==val].iloc[:,1].values)
return pd.DataFrame(graph_matrix),dct
我運行它是這樣的:
graph= create_dictionary(gen_p_graph(100,0.8)[1])
K_shortest_Paths(graph,'11','10')
返回一個空集,而它應該返回路徑。
你爲T傳遞了什麼論點? – EyuelDK
我給了它T = 10,和S = 11 ....非常感謝 –