1
:Networkx:所有生成樹和給定一個簡單無向網格網絡這樣它們相關聯的總重量
import networkx as nx
from pylab import *
import matplotlib.pyplot as plt
%pylab inline
ncols=3
N=3
G=nx.grid_2d_graph(N,N)
labels = dict(((i,j), i + (N-1-j) * N) for i, j in G.nodes())
nx.relabel_nodes(G,labels,False)
inds=labels.keys()
vals=labels.values()
inds=[(N-j-1,N-i-1) for i,j in inds]
pos2=dict(zip(vals,inds))
nx.draw_networkx(G, pos=pos2, with_labels=True, node_size = 200, node_color='orange',font_size=10)
plt.axis('off')
plt.title('grid')
plt.show()
而鑑於每個邊緣具有對應於它的長度的重量:
#Weights
from math import sqrt
weights = dict()
for source, target in G.edges():
x1, y1 = pos2[source]
x2, y2 = pos2[target]
weights[(source, target)] = round((math.sqrt((x2-x1)**2 + (y2-y1)**2)),3)
for e in G.edges():
G[e[0]][e[1]] = weights[e] #Assigning weights to G.edges()
怎麼可能計算網格中的所有生成樹,以及它們相關的總重量?
注意:這是一個所有權重= 1的微不足道的情況。
我知道代碼.... ;-)是否網格保證是正常的? – Paul
此外,大概你已經看到,networkx有一個'minimum_spanning_tree'函數? – Paul
是的,你可以自己繪製它來檢查。但是你有希望的回答讓我覺得這隻適用於電網,對嗎?因爲我不得不爲其他網絡模型做這個:) – FaCoffee